tabletop-companion/app/assets/stylesheets/notifications.css

14 lines
290 B
CSS
Raw Normal View History

2024-06-14 07:39:38 +00:00
#table-notifications {
position: fixed;
width: 60em;
max-width: 80%;
top: 1em; left: 0;
transform: translate(calc(50vw - 50%));
li {
background-color: var(--notification-bg-color);
list-style-type: none;
padding: .5em;
border-radius: var(--border-radius);
}
}