This commit is contained in:
zyronon
2023-08-09 10:33:40 +08:00
parent 95a6ccc7cd
commit 7f81aa5ed1
2 changed files with 14 additions and 4 deletions

View File

@@ -29,8 +29,13 @@ html, body {
}
.my-button {
font-size: 13rem;
cursor: pointer;
border-radius: 4rem;
padding: 5rem 15rem;
padding: 0 15rem;
height: 28rem;
display: flex;
align-items: center;
justify-content: center;
background: $main;
}

View File

@@ -146,7 +146,7 @@ async function selectDict(item: Dict) {
$modal-mask-bg: rgba(#000, .15);
$radius: 16rem;
$time: 0.5s;
$time: 0.3s;
$header-height: 60rem;
.modal-root {
@@ -307,7 +307,7 @@ $header-height: 60rem;
}
}
$footer-height: 40rem;
$footer-height: 50rem;
.chapter-wrapper {
min-width: 25%;
@@ -441,10 +441,15 @@ $footer-height: 40rem;
.other {
flex: 1;
height: 100%;
padding-left: $space;
.word-list {
width: 100%;
min-height: calc(100% - 40rem);
box-sizing: border-box;
padding-right: $space;
overflow: auto;
height: calc(100% - $footer-height);
}
}
}