mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 17:28:54 +00:00
0f48eb8525
This PR brings the style changes made in the "Align Fleet UI colors with Figma components" #615 and "Align Fleet UI with Figma (spacing and fonts)" #628 PRs into the master branch.
132 lines
2.2 KiB
SCSS
132 lines
2.2 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: $core-fleet-black;
|
|
margin: 8px 0 0 44px;
|
|
}
|
|
|
|
a {
|
|
font-size: $x-small;
|
|
color: $core-vibrant-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-vibrant-blue;
|
|
color: $core-vibrant-blue;
|
|
font-weight: $bold;
|
|
text-align: center;
|
|
margin-right: $pad-medium;
|
|
}
|
|
|
|
&__button-wrap {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin: $pad-large 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: $ui-off-white;
|
|
color: $core-fleet-blue;
|
|
border: 1px solid $ui-fleet-blue-15;
|
|
border-radius: 4px;
|
|
padding: 7px $pad-medium;
|
|
margin: $pad-large 0 0 44px;
|
|
}
|
|
|
|
&__error {
|
|
color: $ui-error;
|
|
}
|
|
}
|