27 lines
No EOL
504 B
SCSS
27 lines
No EOL
504 B
SCSS
// POSSIBLE DEPRECATED
|
|
|
|
@mixin logo-default ($image-path) {
|
|
&:before {
|
|
display: inline-block;
|
|
position: absolute;
|
|
|
|
width: 48px;
|
|
height: 48px;
|
|
background-size: 48px;
|
|
background-repeat: no-repeat;
|
|
|
|
left: 10%;
|
|
z-index: 10;
|
|
|
|
content: " ";
|
|
background-image: url($image-path)
|
|
}
|
|
}
|
|
|
|
.ssavpn-logo {
|
|
@include logo-default("https://vpn.iflpanel.com/assets/iflpanel/ssavpn48x48.png");
|
|
}
|
|
|
|
.android-logo {
|
|
@include logo-default("/assets/images/misc/android-logo.png");
|
|
} |