@beterdichtbij/component-library 0.42.0 → 0.42.1
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/dist/bd-component-lib.cjs.js +34 -34
- package/dist/bd-component-lib.es.js +3248 -3236
- package/dist/bd-component-lib.umd.js +34 -34
- package/dist/directives/BDTooltip.d.ts +2 -0
- package/dist/scss/_header.scss +7 -5
- package/dist/scss/base/variables.scss +2 -1
- package/dist/types/ButtonColorVariants.d.ts +1 -0
- package/package.json +1 -1
package/dist/scss/_header.scss
CHANGED
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
text-decoration: none;
|
|
60
60
|
margin: 0px 4px;
|
|
61
61
|
|
|
62
|
-
&.router-link-exact-active {
|
|
62
|
+
&.router-link-exact-active, &:hover {
|
|
63
63
|
background-color: #f1f2f4;
|
|
64
64
|
}
|
|
65
65
|
}
|
|
@@ -131,6 +131,12 @@
|
|
|
131
131
|
display: flex;
|
|
132
132
|
}
|
|
133
133
|
|
|
134
|
+
.bd-btn-settings, .btn-header {
|
|
135
|
+
display: none !important;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
@media (max-width: 890px) {
|
|
134
140
|
.logo-mix .logo {
|
|
135
141
|
height: 20px;
|
|
136
142
|
|
|
@@ -138,10 +144,6 @@
|
|
|
138
144
|
margin-left: 16px;
|
|
139
145
|
}
|
|
140
146
|
}
|
|
141
|
-
|
|
142
|
-
.bd-btn-settings, .btn-header {
|
|
143
|
-
display: none !important;
|
|
144
|
-
}
|
|
145
147
|
}
|
|
146
148
|
|
|
147
149
|
@media (max-width: 400px) {
|