FIX: prevent <big> nesting abuse
This commit is contained in:
parent
8bf91b8dca
commit
104859af47
|
@ -46,15 +46,14 @@ body {
|
||||||
@include clearfix;
|
@include clearfix;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// setting a static limit on big and small prevents nesting abuse
|
||||||
big {
|
big {
|
||||||
font-size: $font-up-5;
|
font-size: 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
small {
|
small {
|
||||||
font-size: $font-down-2;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
//setting a static limit on big and small prevents nesting abuse
|
|
||||||
blockquote {
|
blockquote {
|
||||||
@include post-aside;
|
@include post-aside;
|
||||||
clear: both;
|
clear: both;
|
||||||
|
@ -210,13 +209,13 @@ textarea {
|
||||||
border: 1px solid $primary-medium;
|
border: 1px solid $primary-medium;
|
||||||
&:focus {
|
&:focus {
|
||||||
border-color: $tertiary;
|
border-color: $tertiary;
|
||||||
box-shadow: $tertiary 0px 0px 6px 0px;
|
box-shadow: $tertiary 0px 0px 6px 0px;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
select {
|
select {
|
||||||
border: 1px solid $primary-low;
|
border: 1px solid $primary-low;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Common Classes
|
// Common Classes
|
||||||
|
|
Loading…
Reference in New Issue