cleanup profile page html to be valid replace old temp design system components with new ones divider is now correctly an hr element less section elements to be valid html
29 lines
369 B
CSS
29 lines
369 B
CSS
.sidebar {
|
|
display: none;
|
|
}
|
|
|
|
.nav {
|
|
display: grid;
|
|
gap: var(--Space-x2);
|
|
}
|
|
|
|
.title {
|
|
color: var(--Text-Interactive-Default);
|
|
}
|
|
|
|
.titleSkeleton {
|
|
color: var(--Base-Text-High-contrast);
|
|
}
|
|
|
|
.list {
|
|
list-style: none;
|
|
}
|
|
|
|
@media screen and (min-width: 1367px) {
|
|
.sidebar {
|
|
align-self: flex-start;
|
|
display: block;
|
|
padding-top: var(--Space-x1);
|
|
}
|
|
}
|