@onemrvapublic/design-system 19.2.0-develop.12 → 19.2.0-develop.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
@use 'sass:map';
|
|
1
2
|
@use '../../utils' as utils;
|
|
3
|
+
@use '@angular/material' as mat;
|
|
2
4
|
|
|
3
5
|
@mixin selectablebox($theme) {
|
|
4
6
|
onemrva-mat-selectable-box {
|
|
@@ -24,11 +26,15 @@
|
|
|
24
26
|
}
|
|
25
27
|
|
|
26
28
|
&.white {
|
|
29
|
+
// This was found here although not fully consistent with other designs
|
|
30
|
+
// https://www.figma.com/design/hBBFxwuMKOKwzkVzU9o5lc/Admiss-CC?node-id=1594-36968&t=butZkiqFq9qWKiPJ-0
|
|
27
31
|
background-color: white;
|
|
28
|
-
|
|
32
|
+
$typography: map.get($theme, typography);
|
|
33
|
+
@include mat.m2-typography-level($typography, 'body-2');
|
|
29
34
|
|
|
30
35
|
.subtitle {
|
|
31
36
|
font-weight: normal;
|
|
37
|
+
color: utils.palette($theme, 'grayscale', 700);
|
|
32
38
|
}
|
|
33
39
|
}
|
|
34
40
|
|