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

19 lines
511 B
SCSS

$browsers: (
'android-browser', 'aol-explorer', 'blackberry', 'camino', 'chrome', 'chromium', 'dolphin', 'edge',
'firefox', 'ie', 'maxthon', 'mozilla', 'netscape', 'opera', 'safari', 'sleipnir', 'uc-browser', 'vivaldi'
);
.browser {
width: 1.25rem;
height: 1.25rem;
display: inline-block;
background: no-repeat center/100% 100%;
vertical-align: bottom;
font-style: normal;
}
@each $browser in $browsers {
.browser-#{$browser} {
background-image: url('../images/browsers/' + $browser + '.svg');
}
}