Small and big should be limited via rem so it works large font mode
This commit is contained in:
parent
83c549bd31
commit
ce815276d0
|
@ -48,10 +48,10 @@ body {
|
|||
|
||||
// setting a static limit on big and small prevents nesting abuse
|
||||
big {
|
||||
font-size: 32px;
|
||||
font-size: $font-up-5;
|
||||
}
|
||||
small {
|
||||
font-size: 12px;
|
||||
font-size: $font-down-2;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
|
|
|
@ -79,6 +79,8 @@
|
|||
a { word-wrap: break-word; }
|
||||
ins { background-color: dark-light-choose($success-low, scale-color($success, $lightness: -60%)); }
|
||||
del { background-color: dark-light-choose($danger-low, scale-color($danger, $lightness: -60%)); }
|
||||
big { font-size: 2rem; }
|
||||
small { font-size: 0.75rem; }
|
||||
}
|
||||
|
||||
.cooked, .d-editor-preview {
|
||||
|
|
Loading…
Reference in New Issue