mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
UI: Fix setup flow alignment (#16585)
## Addresses #16569 Before:  Now:  ## Checklist for submitter - [x] Checked on Chrome, Firefox, Safari - [x] Changes file added for user-visible changes in `changes/` - [x] Manual QA for all new/changed functionality --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
This commit is contained in:
parent
94af293ec6
commit
19c1569538
2 changed files with 18 additions and 7 deletions
1
changes/16569-setup-flow-alignment
Normal file
1
changes/16569-setup-flow-alignment
Normal file
|
|
@ -0,0 +1 @@
|
|||
* Fix a small alignment bug in the setup flow
|
||||
|
|
@ -1,8 +1,7 @@
|
|||
.registration-breadcrumbs {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-content: center;
|
||||
width: 600px;
|
||||
width: 652px;
|
||||
height: 125px;
|
||||
margin: 38px auto 0;
|
||||
|
||||
|
|
@ -12,7 +11,7 @@
|
|||
|
||||
&__page {
|
||||
text-align: center;
|
||||
width: 156px;
|
||||
min-width: 156px;
|
||||
font-size: $small;
|
||||
font-weight: $regular;
|
||||
color: $core-white;
|
||||
|
|
@ -21,18 +20,29 @@
|
|||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
|
||||
// line after breadcrumb
|
||||
&::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 197px;
|
||||
width: 88.5%;
|
||||
height: 2px;
|
||||
background-color: $core-vibrant-blue;
|
||||
bottom: 46px;
|
||||
left: 90px;
|
||||
bottom: 36%;
|
||||
left: 121px;
|
||||
|
||||
// Firefox-specific
|
||||
@-moz-document url-prefix() {
|
||||
bottom: 38.2%;
|
||||
}
|
||||
|
||||
@include breakpoint(tablet) {
|
||||
bottom: 21px;
|
||||
bottom: 26.5%;
|
||||
// Firefox-specific
|
||||
@-moz-document url-prefix() {
|
||||
bottom: 30%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue