14 lines
369 B
SCSS
14 lines
369 B
SCSS
@import 'colors';
|
|
@import 'constants';
|
|
@import 'mixins';
|
|
|
|
.procedure-logo {
|
|
@include ie-compatible-background-image();
|
|
|
|
background-color: #ffffff; // also in dark mode: logos assume transparent pixels are white
|
|
background-position: 95% 50%;
|
|
color: #000000; // alt text when image is not loaded
|
|
height: 84px;
|
|
width: 84px;
|
|
margin-right: $default-padding;
|
|
}
|