summaryrefslogtreecommitdiff
path: root/templates/assets/bootstrap/scss/utilities/_borders.scss
diff options
context:
space:
mode:
Diffstat (limited to 'templates/assets/bootstrap/scss/utilities/_borders.scss')
-rw-r--r--templates/assets/bootstrap/scss/utilities/_borders.scss37
1 files changed, 37 insertions, 0 deletions
diff --git a/templates/assets/bootstrap/scss/utilities/_borders.scss b/templates/assets/bootstrap/scss/utilities/_borders.scss
new file mode 100644
index 0000000..b256881
--- /dev/null
+++ b/templates/assets/bootstrap/scss/utilities/_borders.scss
@@ -0,0 +1,37 @@
+//
+// Border
+//
+
+.border-0 { border: 0 !important; }
+.border-top-0 { border-top: 0 !important; }
+.border-right-0 { border-right: 0 !important; }
+.border-bottom-0 { border-bottom: 0 !important; }
+.border-left-0 { border-left: 0 !important; }
+
+//
+// Border-radius
+//
+
+.rounded {
+ @include border-radius($border-radius);
+}
+.rounded-top {
+ @include border-top-radius($border-radius);
+}
+.rounded-right {
+ @include border-right-radius($border-radius);
+}
+.rounded-bottom {
+ @include border-bottom-radius($border-radius);
+}
+.rounded-left {
+ @include border-left-radius($border-radius);
+}
+
+.rounded-circle {
+ border-radius: 50%;
+}
+
+.rounded-0 {
+ border-radius: 0;
+}