improve component spacing

+ bump up folder and album page gap to ~ 1rem
+ test out noise texture on album img on album page
+
~ although i'm still annoyed about the scrollbar space irregularities (will fix someday)
This commit is contained in:
geoffrey45
2022-08-01 00:23:39 +03:00
parent b522069d8e
commit 8fa0516b56
10 changed files with 155 additions and 63 deletions
+19 -18
View File
@@ -1,5 +1,5 @@
<template>
<div class="ap-container noscroll">
<div class="ap-container noscroll rounded">
<div id="ap-page">
<header class="ap-page-header" ref="apheader">
<slot name="header"></slot>
@@ -101,13 +101,28 @@ function toggleBottom() {
.ap-container {
height: 100%;
position: relative;
margin-right: -$small;
width: calc(100% + 1rem);
#ap-page {
overflow: auto;
height: 100%;
position: relative;
display: grid;
grid-template-rows: 18rem 1fr;
gap: 1rem;
padding-right: $small;
width: calc(100% - $small);
.ap-page-content {
padding-bottom: 16rem;
}
}
.ap-page-bottom-container {
position: absolute;
bottom: 0;
height: 15rem;
width: calc(100% - $small);
width: calc(100% - 1.25rem);
background-color: $gray;
transition: all 0.5s ease !important;
overscroll-behavior: contain;
@@ -164,21 +179,7 @@ function toggleBottom() {
}
.addbottompadding {
padding-bottom: 17rem;
}
}
#ap-page {
padding-right: $small;
height: 100%;
position: relative;
overflow: auto;
display: grid;
grid-template-rows: 18rem 1fr;
gap: 1rem;
.ap-page-content {
padding-bottom: 17rem;
padding-bottom: 16rem;
}
}
</style>