Make `hidden` attribute force display:none

This commit is contained in:
Robbie Antenesse 2019-09-26 10:38:40 -06:00
parent fe7305164b
commit 9823ae8290
1 changed files with 8 additions and 0 deletions

View File

@ -19,6 +19,11 @@ nav {
position: relative;
}
// For some reason, hidden is not important by default!
[hidden] {
display: none !important;
}
.pseudo[data-tooltip]::after {
background-color: $picnic-black;
color: $picnic-white;
@ -165,6 +170,9 @@ th {
}
// Handy Utilities
.marginless {
margin: 0 !important;
}
.paddingless {
padding: 0 !important;
}