salix/front/core/styles/border.scss

23 lines
554 B
SCSS
Raw Normal View History

2019-02-06 10:24:29 +00:00
@import "./variables";
2017-11-21 13:22:30 +00:00
html [border-solid], .border-solid {
2019-02-22 13:34:11 +00:00
border: $border-thin-light;
2017-11-21 13:22:30 +00:00
}
html [border-solid-top], .border-solid-top {
2019-02-22 13:34:11 +00:00
border-top: $border-thin-light;
2017-11-21 13:22:30 +00:00
}
html [border-solid-left], .border-solid-left {
2019-02-22 13:34:11 +00:00
border-left: $border-thin-light;
2017-11-21 13:22:30 +00:00
}
html [border-solid-right], .border-solid-right {
2019-02-22 13:34:11 +00:00
border-right: $border-thin-light;
2017-11-21 13:22:30 +00:00
}
html [border-solid-bottom], .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 */
html [border-radius], .border-radius {
border-radius: .3em;
}