mirror of
https://github.com/discourse/discourse.git
synced 2024-12-19 19:40:41 +08:00
ee567165f1
* 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
38 lines
623 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|