mirror of https://github.com/rancher/ui.git
35 lines
651 B
SCSS
Executable File
35 lines
651 B
SCSS
Executable File
// -----------------------------------------------------------------------------
|
|
// This file contains all styles related to the header of the site/application.
|
|
// -----------------------------------------------------------------------------
|
|
header {
|
|
clear: both;
|
|
}
|
|
|
|
.header {
|
|
border-bottom: solid 2px $border;
|
|
margin: 0 0 16.5px 0;
|
|
padding: 15px 0;
|
|
|
|
h1 {
|
|
margin: 2px 0;
|
|
font-size: 21px;
|
|
}
|
|
|
|
.right-buttons {
|
|
@include clearfix;
|
|
float: right;
|
|
|
|
> .resource-actions {
|
|
.btn {
|
|
padding: 5px 10px;
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.header-borderless {
|
|
@extend .header;
|
|
border-bottom: none;
|
|
}
|