mirror of
https://github.com/coreui/coreui-icons.git
synced 2025-08-22 08:12:56 +02:00
17 lines
392 B
SCSS
17 lines
392 B
SCSS
[class^="#{$prefix}"], [class*=" #{$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});
|
|
.#{$prefix}#{$icon-lower} {
|
|
background-image: url(../svg/flag/#{$icon}.svg);
|
|
}
|
|
}
|