salix/front/core/styles/border.scss

23 lines
404 B
SCSS
Raw Normal View History

2019-02-06 10:24:29 +00:00
@import "./variables";
2017-11-21 13:22:30 +00:00
2019-10-06 18:13:24 +00:00
.border-solid {
2019-02-22 13:34:11 +00:00
border: $border-thin-light;
2017-11-21 13:22:30 +00:00
}
2019-10-06 18:13:24 +00:00
.border-solid-top {
2019-02-22 13:34:11 +00:00
border-top: $border-thin-light;
2017-11-21 13:22:30 +00:00
}
2019-10-06 18:13:24 +00:00
.border-solid-left {
2019-02-22 13:34:11 +00:00
border-left: $border-thin-light;
2017-11-21 13:22:30 +00:00
}
2019-10-06 18:13:24 +00:00
.border-solid-right {
2019-02-22 13:34:11 +00:00
border-right: $border-thin-light;
2017-11-21 13:22:30 +00:00
}
2019-10-06 18:13:24 +00:00
.border-solid-bottom {
2019-02-22 13:34:11 +00:00
border-bottom: $border-thin-light;
2017-11-21 13:22:30 +00:00
}
/* Border Radius */
2019-10-06 18:13:24 +00:00
.border-radius {
2020-04-02 12:20:57 +00:00
border-radius: 4px;
2017-11-21 13:22:30 +00:00
}