This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/styles/components/reminders.scss

30 lines
379 B
SCSS

.reminders {
.reminder-input {
display: flex;
align-items: center;
&.overdue input {
color: $red;
}
&:last-child {
margin-bottom: 0.75rem;
}
a {
color: $red;
padding-left: .5rem;
}
input {
width: 100%;
border: none;
&:focus {
border: none;
box-shadow: none;
}
}
}
}