snort/packages/app/src/Element/Timeline.css
Kieran 4b57d57f94
Some checks failed
continuous-integration/drone/push Build is failing
chore: Update translations
2023-09-22 08:38:10 +00:00

50 lines
836 B
CSS

.latest-notes {
cursor: pointer;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 6px 24px;
gap: 8px;
}
.latest-notes-fixed {
position: fixed;
left: 45%;
top: 12px;
width: auto;
z-index: 42;
opacity: 0.9;
box-shadow: 0px 0px 15px rgba(78, 0, 255, 0.6);
color: white;
background: var(--highlight);
border-radius: 100px;
border: none;
}
@media (max-width: 520px) {
.latest-notes-fixed {
width: 200px;
padding: 6px 12px;
position: fixed;
top: 12px;
left: calc(50% - 110px);
}
}
.latest-notes .pfp:not(:last-of-type) {
margin: 0;
margin-right: -26px;
}
.latest-notes .pfp:last-of-type {
margin-right: -8px;
}
.latest-notes .pfp .avatar-wrapper .avatar {
margin: 0;
width: 32px;
height: 32px;
border: 2px solid white;
}