mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
606f9eaec7
[web] Add new green checkmark to plans light touch redesign GitOrigin-RevId: f6c38e819fdd784ccf39ab09109a33fcd58f23d8
38 lines
635 B
Text
38 lines
635 B
Text
// Colors
|
|
.icon-accent {
|
|
color: @accent-color-secondary!important;
|
|
}
|
|
|
|
.icon-lg {
|
|
font-size: 32px !important;
|
|
width: 32px !important;
|
|
height: 32px !important;
|
|
}
|
|
|
|
.icon-md {
|
|
font-size: 24px !important;
|
|
width: 24px !important;
|
|
height: 24px !important;
|
|
}
|
|
|
|
.icon-sm {
|
|
font-size: 20px !important;
|
|
width: 20px !important;
|
|
height: 20px !important;
|
|
}
|
|
|
|
.icon-xs {
|
|
font-size: 16px !important;
|
|
width: 16px !important;
|
|
height: 16px !important;
|
|
}
|
|
|
|
.icon-round-background {
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.icon-green-round-background {
|
|
.icon-round-background;
|
|
background: var(--green-30);
|
|
color: var(--dark-jungle-green);
|
|
}
|