mirror of https://github.com/ColorlibHQ/AdminLTE
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
732 B
39 lines
732 B
/*
|
|
* Component: Brand
|
|
* ----------------
|
|
*/
|
|
|
|
.brand-link {
|
|
$brand-link-padding-y: $navbar-brand-padding-y + $navbar-padding-y;
|
|
display: block;
|
|
font-size: $navbar-brand-font-size;
|
|
line-height: $line-height-lg;
|
|
padding: $brand-link-padding-y $sidebar-padding-x;
|
|
white-space: nowrap;
|
|
|
|
&:hover {
|
|
color: $white;
|
|
text-decoration: none;
|
|
}
|
|
|
|
[class*='sidebar-dark'] & {
|
|
border-bottom: 1px solid lighten($dark, 10%);
|
|
color: rgba($white, .8);
|
|
}
|
|
|
|
[class*='sidebar-light'] & {
|
|
border-bottom: 1px solid $gray-300;
|
|
color: rgba($black, .8);
|
|
}
|
|
}
|
|
|
|
.brand-image {
|
|
float: left;
|
|
line-height: .8;
|
|
margin-left: .8rem;
|
|
margin-right: .5rem;
|
|
margin-top: -3px;
|
|
max-height: 34px;
|
|
width: auto;
|
|
}
|