1
Fork 0
This repository has been archived on 2024-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
Nexus-Polestar/astro/styles/notification.scss
2023-02-11 15:56:54 -05:00

31 lines
No EOL
737 B
SCSS

li.notification {
display: grid;
background: #38488f;
margin-bottom: 16px;
img {
margin: -12px 0px 12px 0px;
border-radius: 6px 6px 0px 0px;
}
.notification-title {
font-size: 16px;
padding: 12px;
}
.notification-message {
font-size: 14px;
padding: 0px 12px;
}
.notification-actions {
padding: 12px 12px 0px 12px;
display: grid;
grid-auto-flow: column;
grid-gap: 4px;
button {
border: 1px #ffffff5c solid;
border-radius: 4px;
padding: 6px 0px;
background: #0000006b;
color: white;
}
button#secondary {background: transparent}
}
}