vikunja-frontend/src/styles/components/reminders.scss

30 lines
379 B
SCSS
Raw Normal View History

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