mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-22 18:25:56 +01:00
Abstract style to mixin
Abstract general style to mixin file for reuse.
This commit is contained in:
parent
37176c8fe5
commit
91da5f015c
@ -17,4 +17,15 @@
|
||||
z-index: 100;
|
||||
right: 35px;
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
@mixin absolute-center($width:108px) {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
margin: auto;
|
||||
width: $width !important;
|
||||
height: $width !important;
|
||||
}
|
@ -1,3 +1,5 @@
|
||||
@import "../../mixin";
|
||||
|
||||
.title-container {
|
||||
display: flex;
|
||||
.chart-name {
|
||||
@ -10,12 +12,5 @@
|
||||
}
|
||||
|
||||
.detail-loading {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
margin: auto;
|
||||
width: 108px !important;
|
||||
height: 108px !important;
|
||||
@include absolute-center;
|
||||
}
|
Loading…
Reference in New Issue
Block a user