mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 15:32:23 -04:00
Do not use overflow-x on ButtonToolbar
* Fixes deck-options dropdown not showing. It seems like it's no longer necessary
This commit is contained in:
parent
63c00db502
commit
75ed24b7ea
1 changed files with 1 additions and 6 deletions
|
@ -80,8 +80,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
<div
|
<div
|
||||||
bind:this={buttonToolbarRef}
|
bind:this={buttonToolbarRef}
|
||||||
{id}
|
{id}
|
||||||
class={`btn-toolbar container wrap-variable ${className}`}
|
class="btn-toolbar container wrap-variable {className}"
|
||||||
class:overflow={!wrap}
|
|
||||||
class:nightMode
|
class:nightMode
|
||||||
{style}
|
{style}
|
||||||
role="toolbar"
|
role="toolbar"
|
||||||
|
@ -105,8 +104,4 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
.wrap-variable {
|
.wrap-variable {
|
||||||
flex-wrap: var(--buttons-wrap);
|
flex-wrap: var(--buttons-wrap);
|
||||||
}
|
}
|
||||||
|
|
||||||
.overflow {
|
|
||||||
overflow-x: auto;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue