fleet/frontend/components/Card/_styles.scss
Gabriel Hernandez 0359290662
implement add Vpp software UI to new add software pages (#22264)
relates to #21811

This adds the UI for the new add vpp software flow. This moves the add
app store vpp flow under the App Store (Vpp) Tab panel. This includes:

**add vpp software form**


![image](https://github.com/user-attachments/assets/0b8cea88-baea-4da7-88f7-6c392a8af4a6)

**has now vpp token setup UI**


![image](https://github.com/user-attachments/assets/40142599-f5d9-4602-a731-786b69a6b8b9)


**has no vpp apps UI**


![image](https://github.com/user-attachments/assets/5aa29772-037c-456a-894b-cf99f5f35cb4)


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

- [x] Changes file added for user-visible changes in `changes/`,
`orbit/changes/` or `ee/fleetd-chrome/changes`.
- [ ] Added/updated tests
- [x] Manual QA for all new/changed functionality
2024-09-20 16:15:10 +01:00

83 lines
1.4 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-medium;
}
&__radius-large {
border-radius: $border-radius-large;
}
&__radius-xlarge {
border-radius: $border-radius-xlarge;
}
&__radius-xxlarge {
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;
}
&__padding-xxxlarge {
padding: $pad-xxxlarge;
}
// 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;
}
}