We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 416720a commit b1ee1c3Copy full SHA for b1ee1c3
packages/svelte/src/toolbar/ToolBar.svelte
@@ -228,7 +228,6 @@
228
background-color: var(--toolbar-background);
229
color: var(--toolbar-color);
230
z-index: 1000;
231
- border-radius: 8px;
232
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
233
}
234
@@ -246,6 +245,8 @@
246
245
transition: background-color 0.2s ease-in-out;
247
248
margin: 0;
+ height: var(--toolbar-height);
249
+ display: flex;
250
251
252
.svelte-toolbar-selector:hover {
@@ -341,6 +342,7 @@
341
342
--tool-icon-color: #333;
343
--accent-color: #ff3e00;
344
--panel-background: #fff;
345
+ --toolbar-height: 50px;
346
347
348
@media (prefers-color-scheme: dark) {
0 commit comments