@ieeesa-npm/shared-styles 0.0.1 → 0.0.2
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.
- package/package.json +1 -1
- package/styles/theme.scss +9 -1
- package/styles/variables.scss +1 -0
package/package.json
CHANGED
package/styles/theme.scss
CHANGED
|
@@ -91,6 +91,14 @@
|
|
|
91
91
|
);
|
|
92
92
|
}
|
|
93
93
|
}
|
|
94
|
+
// Bordered button with no background
|
|
95
|
+
.no-bg-color-btn {
|
|
96
|
+
color: $ieeesa-blue;
|
|
97
|
+
border-radius: 3px;
|
|
98
|
+
border: 1px solid $ieeesa-blue;
|
|
99
|
+
min-height: 40px;
|
|
100
|
+
height: auto;
|
|
101
|
+
}
|
|
94
102
|
@media (max-width: 768px) {
|
|
95
103
|
.mat-button-toggle-group {
|
|
96
104
|
.mat-button-toggle-label-content {
|
|
@@ -106,4 +114,4 @@
|
|
|
106
114
|
.cdk-overlay-pane {
|
|
107
115
|
width: 100%;
|
|
108
116
|
min-width: 312px;
|
|
109
|
-
}
|
|
117
|
+
}
|
package/styles/variables.scss
CHANGED
|
@@ -101,6 +101,7 @@ $ieeesa-box-shadow-5: 0px 8px 12px 6px rgba(0, 0, 0, 0.15),
|
|
|
101
101
|
0px 4px 4px rgba(0, 0, 0, 0.3);
|
|
102
102
|
$ieeesa-box-shadow-6: 0px 1px 3px rgba(0, 0, 0, 0.12),
|
|
103
103
|
0px 1px 1px rgba(0, 0, 0, 0.14), 0px 2px 1px -1px rgba(0, 0, 0, 0.2);
|
|
104
|
+
$ieeesa-box-shadow-7: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
|
|
104
105
|
$ieeesa-box-inner-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.25) inset;
|
|
105
106
|
// Angular Material mat-button styles
|
|
106
107
|
$ieeesa-primary-btn-active: #00629b;
|