mirror of
https://github.com/Macrame-App/Macrame
synced 2025-12-29 07:19:26 +00:00
Fixed overflow/height issue.
This commit is contained in:
parent
f662f907d7
commit
c405d54d0e
2 changed files with 6 additions and 3 deletions
|
|
@ -61,9 +61,12 @@ const loadMacroList = async () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
.macro-overview__list {
|
.macro-overview__list {
|
||||||
@apply grid
|
@apply flex
|
||||||
|
flex-col
|
||||||
|
pr-1
|
||||||
gap-1
|
gap-1
|
||||||
content-start;
|
h-[calc(100vh-11.7rem)]
|
||||||
|
overflow-auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.macro-item {
|
.macro-item {
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div id="macros" class="panel">
|
<div id="macros" class="panel">
|
||||||
<h1 class="panel__title">Macros</h1>
|
<h1 class="panel__title">Macros</h1>
|
||||||
<div class="panel__content !p-0">
|
<div class="panel__content !p-0 !overflow-hidden">
|
||||||
<div class="macro-panel__content">
|
<div class="macro-panel__content">
|
||||||
<MacroOverview />
|
<MacroOverview />
|
||||||
<MacroRecorder />
|
<MacroRecorder />
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue