discourse/app/assets/stylesheets/mobile/history.scss
Jarek Radosz 4170b9bb58
DEV: Use more css vars (#18561)
Followup to #18518

This time it's mostly line-height vars and a couple of other uncommon vars.
2022-10-12 16:05:42 +02:00

43 lines
605 B
SCSS

.modal.history-modal {
button {
float: none;
}
.modal-body {
height: 62vh;
}
.modal-inner-container {
min-height: 400px;
}
#revisions {
max-width: 90vw;
}
#revision-numbers {
line-height: var(--line-height-large);
}
img {
max-width: 95%;
height: auto;
}
.revision-content {
table {
table-layout: fixed;
width: 100%;
word-wrap: break-word;
}
}
.modal-footer {
text-align: center;
}
#revision-controls {
margin-bottom: 5px;
}
#revision-footer-buttons {
button {
@extend .btn-small;
}
}
}