discourse/app/assets/stylesheets/mobile/topic-footer.scss
chapoi ee567165f1
UX: increase button sizes and timeline size (#30240)
* UX: increase button sizes and timeline size

* UX: bring back tracking btn on topic timeline desktop

* Scope flexing topic-navigation area to mobile + make all buttons same font-size
2024-12-12 16:09:44 +01:00

38 lines
623 B
SCSS

.container.posts .topic-navigation {
display: flex;
justify-content: flex-end;
align-items: center;
}
html:not(.anon) #topic-footer-buttons {
.topic-footer-main-buttons {
width: 100%;
justify-content: space-between;
gap: 0.75rem;
button,
.topic-notifications-button,
.pinned-button {
font-size: var(--font-up-1);
}
&__actions {
gap: 0.75rem;
}
.d-button-label {
display: none;
}
.pinned-button,
.topic-notifications-button {
.selected-name .name {
display: none;
}
}
.d-icon {
margin-right: 0;
}
}
}