mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/unity.git
synced 2026-08-21 13:24:17 +00:00
22 lines
400 B
SCSS
Vendored
22 lines
400 B
SCSS
Vendored
// FlagKit
|
|
|
|
$FLAGKIT_FOLDER_PATH: '~flagkit-web/svgs/';
|
|
|
|
@import '~flagkit-web/styles/flags.scss';
|
|
|
|
.flag {
|
|
@include flag-background('16');
|
|
&.medium {
|
|
@include flag-background('24')
|
|
}
|
|
&.large {
|
|
@include flag-background('32')
|
|
}
|
|
}
|
|
|
|
@each $country-code in $FLAGKIT_COUNTRY_CODES {
|
|
.#{$country-code} {
|
|
background: url(#{$FLAGKIT_FOLDER_PATH}#{$country-code}.svg) no-repeat;
|
|
}
|
|
}
|