Files
grecia/app/assets/stylesheets/mixins.scss
Alberto Garcia Cabeza 08db2faf86 fixes breakpoint on mixins
2016-10-25 16:30:36 +02:00

33 lines
481 B
SCSS

// Table of Contents
//
// 01. Logo
//
// 01. Logo
// --------
@mixin logo {
color: white;
display: inline-block;
font-family: 'Lato' !important;
font-size: rem-calc(24);
font-weight: lighter;
@include breakpoint(medium) {
line-height: $line-height*2;
margin-top: 0;
}
img {
height: 48px;
width: 48px;
@include breakpoint(medium) {
height: 80px;
margin-right: $line-height/2;
margin-top: 0;
width: 80px;
}
}
}