]> git.ipfire.org Git - ipfire.org.git/blob - src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_borders.scss
.gitignore: Add .vscode
[ipfire.org.git] / src / scss / bootstrap-4.0.0-alpha.6 / scss / utilities / _borders.scss
1 //
2 // Border
3 //
4
5 .border-0 { border: 0 !important; }
6 .border-top-0 { border-top: 0 !important; }
7 .border-right-0 { border-right: 0 !important; }
8 .border-bottom-0 { border-bottom: 0 !important; }
9 .border-left-0 { border-left: 0 !important; }
10
11 //
12 // Border-radius
13 //
14
15 .rounded {
16 @include border-radius($border-radius);
17 }
18 .rounded-top {
19 @include border-top-radius($border-radius);
20 }
21 .rounded-right {
22 @include border-right-radius($border-radius);
23 }
24 .rounded-bottom {
25 @include border-bottom-radius($border-radius);
26 }
27 .rounded-left {
28 @include border-left-radius($border-radius);
29 }
30
31 .rounded-circle {
32 border-radius: 50%;
33 }
34
35 .rounded-0 {
36 border-radius: 0;
37 }