Fix overflow

This commit is contained in:
rift 2024-08-15 18:04:06 -05:00
parent 315204e5d7
commit bdea8efb53
4 changed files with 33 additions and 14 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

View file

@ -0,0 +1,19 @@
:root {
--background-primary: rgba(0, 0, 0, 0);
--background-lighter: #04ff00;
--navbar-color: #ffffff;
--navbar-height: 60px;
--navbar-text-color: #ff7300;
--navbar-link-color: #16dcff;
--navbar-link-hover-color: gray;
--navbar-font: "Roboto";
--input-text-color: #e0def4;
--input-placeholder-color: white;
--input-background-color: #ffb9d5;
--input-border-color: #eb6f92;
--input-border-size: 1.3px;
--navbar-logo-filter: none;
--dropdown-option-hover-color: #a891f4;
--tab-color: var(--black);
--border-color: #ff009d;
}

View file

@ -163,18 +163,18 @@ app.use(express.static(publicPath));
// type: "theme", // type: "theme",
// }); // });
// await catalog_assets.create({ await catalog_assets.create({
// package_name: "com.nebula.fortnite.jpg", package_name: "com.neptune.neptune",
// title: "Fortnite.jpg", title: "Neptune",
// image: "fortnite.jpg", image: "neptune.webp",
// author: "Nebula Services", author: "Neptune",
// version: "1.0.0", version: "1.0.0",
// description: "Like the image in Ultraviolet, now on Nebula!", description: "Neptune image",
// tags: ["Image", "Funny"], tags: ["Image", "Funny"],
// payload: "com.nebula.cybermonay.css", payload: "neptune.css",
// background_image: "fortnite.jpg", background_image: "neptune.webp",
// type: "theme", type: "theme",
// }); });
catalog_assets.sync(); catalog_assets.sync();
const server = createServer(); const server = createServer();

View file

@ -9,7 +9,7 @@ import { Icon } from "astro-icon/components";
<div class="flex flex-row"> <div class="flex flex-row">
<div <div
class="text-text-color mt-16 overflow-y-auto fixed inset-0 h-[calc(100%-4rem)] z-0 bg-primary flex-col flex md:flex-row" class="text-text-color mt-16 fixed inset-0 h-[calc(100%-4rem)] z-0 bg-primary flex-col flex md:flex-row"
> >
<div <div
class="items-center p-3 flex flex-row border-border-color gap-5 border-r-2 md:w-2/12 md:flex-col md:bg-navbar-color md:gap-0 md:p-0" class="items-center p-3 flex flex-row border-border-color gap-5 border-r-2 md:w-2/12 md:flex-col md:bg-navbar-color md:gap-0 md:p-0"
@ -36,7 +36,7 @@ import { Icon } from "astro-icon/components";
/> />
</SidebarButton> </SidebarButton>
</div> </div>
<div class="p-8 md:w-10/12"> <div class="p-8 md:w-10/12 overflow-y-auto">
<p class="text-5xl font-semibold mb-5">{t("settings.settings")}</p> <p class="text-5xl font-semibold mb-5">{t("settings.settings")}</p>
<p class="text-2xl">{title}</p> <p class="text-2xl">{title}</p>
<slot /> <slot />