Files
onspring-api-docs/src/app/components/SideBar.module.css
T

60 lines
779 B
CSS
Raw Normal View History

2023-04-07 23:18:45 -05:00
.container {
display: flex;
flex-direction: column;
height: 100%;
border-right: 1px solid #848586;
padding: 1rem;
}
.title {
font-size: 1rem;
white-space: nowrap;
margin-bottom: 1rem;
2023-04-07 23:18:45 -05:00
}
.onspring {
font-weight: bold;
color: white;
}
.api {
font-weight: bold;
color: #ee7203;
}
.list {
display: flex;
flex-direction: column;
gap: 0.25rem;
white-space: nowrap;
}
.listItem {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 0.5rem;
cursor: pointer;
padding: 0 0.5rem;
}
.link {
text-decoration: none;
color: #a3acb9;
}
.link:hover {
color: white;
}
.expandable {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
gap: 1rem;
}
.chevron {
margin-left: 0.5rem;
2023-04-07 23:18:45 -05:00
}