fleet/frontend/components/Card/_styles.scss
Gabriel Hernandez a292e704de
add startup assistant to the UI (#17731)
relates to #9147

add the setup assistant page to the UI. This includes:

- new setup assistant page
- uploaded profile and release device manually form
- preview for setup assistant flow

<!-- Note that API documentation changes are now addressed by the
product design team. -->

- [x] Changes file added for user-visible changes in `changes/` or
`orbit/changes/`.
See [Changes
files](https://fleetdm.com/docs/contributing/committing-changes#changes-files)
for more information.
- [x] Added/updated tests
- [x] Manual QA for all new/changed functionality

---------

Co-authored-by: Martin Angers <martin.n.angers@gmail.com>
2024-03-26 14:46:33 +00:00

70 lines
1.2 KiB
SCSS

.card {
border-radius: $border-radius;
border: 1px solid $ui-fleet-black-10;
// TODO - update this to be 40px per style guide
padding: $pad-large;
// radius styles
&__radius-small {
border-radius: $border-radius;
}
&__radius-medium {
border-radius: $border-radius-large;
}
&__radius-large {
border-radius: $border-radius-xxlarge;
}
// box shadow styles
&__shadow {
box-shadow: $box-shadow;
}
&__padding-small {
padding: $pad-small;
}
&__padding-medium {
padding: $pad-medium;
}
&__padding-large {
padding: $pad-large;
}
&__padding-xlarge {
padding: $pad-xlarge;
}
&__padding-xxlarge {
padding: $pad-xxlarge;
}
// 40px padding
// TODO: remove when we've replaced all instances of largePadding with
// paddingSize prop
&__large-padding {
padding: $pad-xxlarge;
}
// color styles
&__white {
background-color: $core-white;
}
&__gray {
background-color: $ui-off-white;
}
&__purple {
background-color: $ui-vibrant-blue-10;
border-color: $ui-vibrant-blue-50;
}
&__yellow {
background-color: $ui-yellow-banner;
border-color: $ui-yellow-banner-outline;
}
}