Skip to content

Commit 4b2d1ad

Browse files
authored
Merge pull request #586 from MerginMaps/per_seat_pricing
add variables and custom classes
2 parents ba69f4f + 47a5e73 commit 4b2d1ad

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

web-app/packages/lib/src/assets/sass/themes/mm-theme-light/_extensions.scss

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,10 @@ img {
110110
color: map-get($colors, 'dark-green');
111111
}
112112

113+
.text-color-dark-gray {
114+
color: map-get($colors, 'dark-gray');
115+
}
116+
113117
.overflow-wrap-anywhere {
114118
overflow-wrap: anywhere;
115119
}
@@ -124,3 +128,8 @@ img {
124128
.p-avatar:not(.p-avatar-lg):not(.p-avatar-xl) {
125129
font-size: 0.857rem;
126130
}
131+
132+
.tooltip {
133+
text-decoration-line: underline;
134+
text-decoration-style: dotted;
135+
}

web-app/packages/lib/src/assets/sass/themes/mm-theme-light/_variables.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ $colors: (
3737
"rose": #FFBABC,
3838
"field": #9BD1A9,
3939
"sky": #A6CBF4,
40-
"informative": #BEDAF0
40+
"informative": #BEDAF0,
41+
"dark-gray": #41464C,
42+
"medium-gray": #A0A3A5
4143
);
4244

4345
// Mandatory Designer Variables
@@ -115,5 +117,7 @@ $colors: (
115117
--dark-green-color: #{map-get($colors, "dark-green")};
116118
--negative-light-color: #{map-get($colors, "negative-light")};
117119
--earth-color: #{map-get($colors, "earth")};
120+
--dark-gray-color: #{map-get($colors, "dark-gray")};
121+
--medium-gray-color: #{map-get($colors, "medium-gray")};
118122
color-scheme: light;
119123
}

0 commit comments

Comments
 (0)