30 lines
469 B
SCSS
30 lines
469 B
SCSS
.ka-dir {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
margin: 10px 0;
|
|
flex-direction: column;
|
|
border-bottom: solid 2px var(--foreground);
|
|
|
|
.ka-dir-top {
|
|
border-bottom: solid 2px var(--foreground);
|
|
}
|
|
|
|
.ka-dir-row {
|
|
padding: 0 10px;
|
|
width: 100%;
|
|
height: 25px;
|
|
display: grid;
|
|
grid-template-columns: 0.1fr 2fr 1fr 1fr;
|
|
|
|
.ka-dir-item {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
a:hover.ka-dir-item {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|