1
0
mirror of https://github.com/coreui/coreui-icons.git synced 2025-08-12 03:33:59 +02:00
Files
coreui-icons/scss/flag/_core.scss

17 lines
469 B
SCSS

[class^="#{$coreui-icons-prefix}"], [class*=" #{$coreui-icons-prefix}"] {
background-size: contain;
background-position: 50%;
background-repeat: no-repeat;
position: relative;
display: inline-block;
width: 1.33333333em;
line-height: 1em;
}
@each $icon, $unicode in $icons {
$icon-lower: to-lower-case(#{$icon});
.#{$coreui-icons-prefix}#{$icon-lower} {
background-image: url(#{$coreui-flag-icons-path}/#{$coreui-icons-prefix}#{$icon}.svg);
}
}