-delen van agenda toegevoegd -popup aangepast -accepteren van uitnodiging toegevoegd
36 lines
606 B
SCSS
36 lines
606 B
SCSS
.dropdown-content {
|
|
border-radius: 12px;
|
|
background-color: white;
|
|
min-width: 220px;
|
|
}
|
|
|
|
.dropdown-section-title {
|
|
font-size: 0.75rem;
|
|
font-weight: 600;
|
|
color: #6b7280;
|
|
text-transform: uppercase;
|
|
margin-bottom: 0.5rem;
|
|
margin-top: 1rem;
|
|
padding-left: 0.25rem;
|
|
}
|
|
|
|
.dropdown-item {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0.5rem 0.75rem;
|
|
border-radius: 8px;
|
|
transition: background-color 0.2s ease;
|
|
font-size: 0.95rem;
|
|
gap: 0.5rem;
|
|
white-space: nowrap;
|
|
|
|
&:hover {
|
|
background-color: #f3f4f6;
|
|
}
|
|
|
|
&:focus {
|
|
outline: none;
|
|
background-color: #e5e7eb;
|
|
}
|
|
}
|