1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-13 23:02:23 +04:00
Files
tabler/assets/scss/dashboard/_flag.scss
T
2018-02-19 20:23:01 +01:00

17 lines
344 B
SCSS

.flag {
width: (1.2rem*640/480);
height: 1.2rem;
display: inline-block;
background: no-repeat center/100% 100%;
vertical-align: bottom;
font-style: normal;
box-shadow: 0 0 1px 1px rgba(0, 0, 0, .1);
border-radius: 2px;
}
@each $flag in $flag-icons {
.flag-#{$flag} {
background-image: url('../images/flags/' + $flag + '.svg');
}
}