buttons folder

This commit is contained in:
Jan Prochazka
2022-02-12 17:26:28 +01:00
parent 5a88423f62
commit e06b030707
74 changed files with 81 additions and 107 deletions

View File

@@ -0,0 +1,27 @@
<div class="toolstrip">
<slot name="toolstrip" />
</div>
<div class="content">
<slot />
</div>
<style>
.content {
position: absolute;
left: 0;
top: var(--dim-toolbar-height);
right: 0;
bottom: 0;
display: flex;
}
.toolstrip {
position: absolute;
left: 0;
height: var(--dim-toolbar-height);
right: 0;
display: flex;
background: var(--theme-bg-0);
}
</style>