website/src/styles/components/_link-tree.scss

47 lines
780 B
SCSS
Raw Normal View History

2023-06-06 20:18:12 +02:00
.main-wiki {
display: grid;
2023-06-06 21:34:16 +02:00
grid-template-columns: 16em 1fr 16em;
2023-06-06 20:18:12 +02:00
}
.link-tree {
padding: 1em;
overflow-y: auto;
&__heading {
2023-06-06 21:34:16 +02:00
border-bottom: 1px solid;
border-image: linear-gradient(to right, transparent, var(--c-primary), transparent) 1;
2023-06-06 20:18:12 +02:00
&-text {
display: block;
text-decoration: unset;
text-align: center;
}
}
&__nav {
&-list {
margin: 0;
padding-left: 0.5em;
list-style: none;
ul {
border-left: 1px solid lightgray;
}
}
// &-list-item {
// }
&-list-text {
2023-06-06 20:43:21 +02:00
display: block;
2023-06-06 20:18:12 +02:00
text-decoration: unset;
2023-06-06 20:43:21 +02:00
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
2023-06-06 20:18:12 +02:00
&.current {
text-decoration: underline;
}
}
}
}