mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
* add prettier and have it format all js code except website: : * trying running prettier check in CI * fix runs on in CI * change CI job name * fix prettier erros and fix CI
131 lines
2.1 KiB
SCSS
131 lines
2.1 KiB
SCSS
.add-host-modal {
|
|
&__manual-install-header {
|
|
position: relative;
|
|
z-index: 2;
|
|
|
|
h2 {
|
|
font-size: 18px;
|
|
font-weight: $bold;
|
|
line-height: 1.33;
|
|
letter-spacing: -0.6px;
|
|
color: #48c586;
|
|
margin: 0;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 15px;
|
|
font-weight: $regular;
|
|
line-height: 1.6;
|
|
letter-spacing: normal;
|
|
color: rgba(32, 37, 50, 0.48);
|
|
margin: 0;
|
|
}
|
|
|
|
.kolidecon {
|
|
float: left;
|
|
font-size: 44px;
|
|
color: #48c586;
|
|
margin-right: 15px;
|
|
}
|
|
}
|
|
|
|
&__manual-install-content {
|
|
h4 {
|
|
font-size: $small;
|
|
font-weight: $bold;
|
|
margin: 34px 0 0;
|
|
|
|
.kolidecon {
|
|
margin-left: 5px;
|
|
font-size: 18px;
|
|
}
|
|
}
|
|
|
|
p {
|
|
font-size: $x-small;
|
|
font-weight: $regular;
|
|
line-height: 20px;
|
|
letter-spacing: normal;
|
|
color: $black;
|
|
margin: 8px 0 0 44px;
|
|
}
|
|
|
|
a {
|
|
font-size: $x-small;
|
|
color: $core-blue;
|
|
font-weight: $bold;
|
|
text-decoration: none;
|
|
|
|
img {
|
|
width: 12px;
|
|
height: 12px;
|
|
margin-left: 7px;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__documentation-link {
|
|
h4 {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
&__install-steps {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
&__step-number {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 24px;
|
|
height: 24px;
|
|
border-radius: 100px;
|
|
border: 2px solid $core-blue;
|
|
color: $core-blue;
|
|
font-weight: $bold;
|
|
text-align: center;
|
|
margin-right: 16px;
|
|
}
|
|
|
|
&__button-wrap {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin: 24px 0 0;
|
|
}
|
|
|
|
&__download-cert {
|
|
text-align: center;
|
|
padding-top: 15px;
|
|
|
|
span {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
&__reveal-secret {
|
|
float: right;
|
|
text-decoration: none;
|
|
}
|
|
|
|
&__secret-wrapper {
|
|
position: relative;
|
|
margin: 0 0 0 44px;
|
|
}
|
|
|
|
pre,
|
|
code {
|
|
background-color: $core-light-blue-grey;
|
|
color: $core-medium-blue-grey;
|
|
border: 1px solid $ui-borders;
|
|
border-radius: 4px;
|
|
padding: 7px 16px;
|
|
margin: 24px 0 0 44px;
|
|
}
|
|
|
|
&__error {
|
|
color: $alert;
|
|
}
|
|
}
|