mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-10 04:25:08 +00:00
Border class helpers added.
This commit is contained in:
parent
495d4eb1e3
commit
6e93b5fe76
|
@ -106,3 +106,44 @@
|
||||||
margin-top: auto !important;
|
margin-top: auto !important;
|
||||||
margin-bottom: auto !important;
|
margin-bottom: auto !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Border helpers
|
||||||
|
$border-style: 1px solid rgba(0, 0, 0, 0.12);
|
||||||
|
|
||||||
|
.border,
|
||||||
|
.b {
|
||||||
|
border: $border-style;
|
||||||
|
}
|
||||||
|
|
||||||
|
.border-top,
|
||||||
|
.bt {
|
||||||
|
border-top: $border-style;
|
||||||
|
}
|
||||||
|
|
||||||
|
.border-right,
|
||||||
|
.br {
|
||||||
|
border-right: $border-style;
|
||||||
|
}
|
||||||
|
|
||||||
|
.border-bottom,
|
||||||
|
.bb {
|
||||||
|
border-bottom: $border-style;
|
||||||
|
}
|
||||||
|
|
||||||
|
.border-left,
|
||||||
|
.bl {
|
||||||
|
border-left: $border-style;
|
||||||
|
}
|
||||||
|
|
||||||
|
.border-horizontal,
|
||||||
|
.b-x {
|
||||||
|
border-left: $border-style;
|
||||||
|
border-right: $border-style;
|
||||||
|
}
|
||||||
|
|
||||||
|
.border-vertical,
|
||||||
|
.by {
|
||||||
|
border-top: $border-style;
|
||||||
|
border-bottom: $border-style;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user