31 lines
499 B
CSS
31 lines
499 B
CSS
|
.dashboard .links {
|
||
|
display: grid;
|
||
|
grid-template-columns: repeat(2, 1fr);
|
||
|
|
||
|
ul {
|
||
|
list-style-type: none;
|
||
|
white-space:nowrap;
|
||
|
padding: 0;
|
||
|
margin: 0 0 2rem 0;
|
||
|
|
||
|
h2 {
|
||
|
position: relative;
|
||
|
font-size: 1.5rem;
|
||
|
font-weight: 600;
|
||
|
margin: .5rem 0;
|
||
|
}
|
||
|
|
||
|
li {
|
||
|
margin: .25rem 0;
|
||
|
|
||
|
a {
|
||
|
color: var(--l-color);
|
||
|
font-size: .9rem;
|
||
|
margin: 0 .25rem 0 0;
|
||
|
|
||
|
&:hover { text-decoration: underline }
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|