vue3-router-tab 1.2.3 → 1.2.5

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.
@@ -202,7 +202,10 @@
202
202
  overflow: hidden;
203
203
  }
204
204
  }
205
-
205
+ .router-tab__container {
206
+ padding: 10px;
207
+ border: 1px solid var(--router-tab-border);
208
+ }
206
209
  // Context Menu using button colors
207
210
  .router-tab__contextmenu {
208
211
  position: fixed;
package/lib/theme.ts CHANGED
@@ -78,7 +78,6 @@ const defaultDarkColor: ColorStyle = {
78
78
 
79
79
  function applyPrimary(color: ColorStyle) {
80
80
  if (typeof document === 'undefined') return
81
- console.log('applyPrimary', color)
82
81
  document.documentElement.style.setProperty('--router-tab-primary', color.primary ?? defaultColors.primary)
83
82
  document.documentElement.style.setProperty('--router-tab-header-bg', color.headerBackground ?? defaultColors.headerBackground)
84
83
  document.documentElement.style.setProperty('--router-tab-background', color.background ?? defaultColors.background)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue3-router-tab",
3
- "version": "1.2.3",
3
+ "version": "1.2.5",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",