mirror of
https://github.com/harness/drone.git
synced 2025-05-04 20:10:44 +08:00
61 lines
1.3 KiB
SCSS
61 lines
1.3 KiB
SCSS
.main {
|
|
min-height: var(--page-min-height, 100%);
|
|
background-color: var(--white) !important;
|
|
}
|
|
|
|
.emptyRepo {
|
|
padding: var(--spacing-xxlarge) !important;
|
|
}
|
|
|
|
.divContainer {
|
|
background: var(--white);
|
|
box-shadow: var(--elevation-2);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.textContainer {
|
|
a {
|
|
color: var(--primary-7) !important;
|
|
}
|
|
}
|
|
|
|
.bannerContainer {
|
|
padding: var(--spacing-small) var(--spacing-xsmall) !important;
|
|
background-color: var(--red-50) !important;
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 2;
|
|
margin: var(--spacing-small) var(--spacing-xlarge) !important;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.layout {
|
|
height: 33px;
|
|
display: inline-flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border: 1px solid var(--grey-200);
|
|
background-color: var(--grey-50) !important;
|
|
border-radius: 4px;
|
|
padding-left: var(--spacing-small) !important;
|
|
max-width: 100%;
|
|
.url {
|
|
// width: 80%;
|
|
white-space: nowrap !important;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
font-size: var(--font-size-small) !important;
|
|
}
|
|
|
|
button#cloneCopyButton {
|
|
--button-height: 24px !important;
|
|
border-radius: 0 !important;
|
|
border-left: 1px solid var(--grey-200) !important;
|
|
margin-left: var(--spacing-small) !important;
|
|
}
|
|
}
|
|
|
|
.text {
|
|
font-size: 16px !important;
|
|
}
|