mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
40 lines
893 B
SCSS
40 lines
893 B
SCSS
// component styles are encapsulated and only applied to their components
|
|
@import "../../style/themes/themes";
|
|
|
|
@include themifyComponent() {
|
|
.wrapper {
|
|
width: 100%;
|
|
padding-top: 10px;
|
|
background: linear-gradient(to right, themed(headerGradientStartColor), themed(headerGradientEndColor));
|
|
}
|
|
|
|
.header {
|
|
width: 100%;
|
|
border-top: 1px solid themed(headerBorderColor);
|
|
border-bottom: 1px solid themed(headerBorderColor);
|
|
background-color: themed(headerBgColor);
|
|
}
|
|
|
|
.header .title {
|
|
margin: 0;
|
|
width: 83.333333%; // col-sm-10
|
|
padding: 15px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.header .title .pageName {
|
|
font-weight: 100;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.header .quickAction {
|
|
padding: 0;
|
|
margin: 0;
|
|
float: right;
|
|
text-align: right;
|
|
display: inline-block;
|
|
width: 15.666667%; // col-sm-2
|
|
position: relative;
|
|
}
|
|
} |