mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-01 15:55:36 +01:00
26 lines
343 B
SCSS
26 lines
343 B
SCSS
//
|
|
// Utilities
|
|
// ---
|
|
// bigchaindb.com
|
|
//
|
|
|
|
/* stylelint-disable declaration-no-important */
|
|
|
|
.invisible {
|
|
visibility: hidden !important;
|
|
}
|
|
|
|
.hide {
|
|
display: none !important;
|
|
}
|
|
|
|
/* stylelint-enable */
|
|
|
|
.text-hide {
|
|
font: '0/0' a;
|
|
color: transparent;
|
|
text-shadow: none;
|
|
background-color: transparent;
|
|
border: 0;
|
|
}
|