mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-17 21:49:01 +01:00
21 lines
318 B
SCSS
Vendored
21 lines
318 B
SCSS
Vendored
.uppercase {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.margin-top {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.margin-bottom {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.no-select {
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select: none;
|
|
-khtml-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|