49 lines
713 B
CSS
49 lines
713 B
CSS
.menu {
|
|
border: 1px solid #ddd;
|
|
border-radius: 8px;
|
|
padding: 1rem;
|
|
background-color: #f9f9f9;
|
|
height: 100%;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.menu-label {
|
|
font-size: 1.25rem;
|
|
color: #363636;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.menu-list {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.menu-list-item {
|
|
padding: 0.5rem;
|
|
font-size: 1rem;
|
|
color: #4a4a4a;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
|
|
.menu-list-item:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.menu-list-item:hover {
|
|
background-color: #f5f5f5;
|
|
color: #00d1b2;
|
|
}
|
|
|
|
.has-text-weight-bold {
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.is-clickable {
|
|
color: #3273dc;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.is-clickable:hover {
|
|
color: #2759a7;
|
|
}
|