update: layout styles in overview and article pages

This commit is contained in:
Keisuke Hirata 2024-12-18 06:34:55 +09:00
parent bafa8e4d18
commit 5c05db4580
3 changed files with 5 additions and 5 deletions

@ -1 +0,0 @@
Subproject commit 6cd6a02396ef9ff5786bffaf082a6e72bf1a135f

View File

@ -44,6 +44,7 @@
margin-left: 0.5em; margin-left: 0.5em;
padding-left: 0.25em; padding-left: 0.25em;
border-left: 1px solid var(--line-primary); border-left: 1px solid var(--line-primary);
box-sizing: border-box;
} }
ul { ul {
border-left: none; border-left: none;

View File

@ -131,15 +131,15 @@
.card-container { .card-container {
position: sticky; position: sticky;
top: 0; top: 0;
overflow-y: auto;
background-color: var(--background-primary); background-color: var(--background-primary);
box-sizing: border-box; box-sizing: border-box;
padding: 20px; padding: 20px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: space-between; justify-content: space-between;
overflow: visible;
.card { .card {
width: 300px; width: 100px;
padding: 0.5em 0; padding: 0.5em 0;
overflow: visible; overflow: visible;
} }