smon/static/css/default_light/notifications.css

24 lines
467 B
CSS
Raw Normal View History

2024-06-29 19:30:26 +02:00
input[type="datetime-local"] {
padding: 6px;
}
2024-06-29 15:21:52 +02:00
#notifications {
display: grid;
2024-06-29 18:09:56 +02:00
grid-template-columns: repeat(5, min-content);
2024-06-29 15:21:52 +02:00
grid-gap: 4px 16px;
margin-top: 32px;
margin-bottom: 32px;
background-color: #2979b8;
padding: 16px 24px;
width: min-content;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
#notifications div {
white-space: nowrap;
line-height: 24px;
}
#notifications .header {
font-weight: 800;
color: #7bb8eb;
}