mirror of
https://github.com/NebulaServices/Nebula.git
synced 2025-05-17 05:20:01 -04:00
Revert "Catppuccin theming was inconsistent"
This reverts commit d8a975d531
.
This commit is contained in:
parent
38231f4eaa
commit
beefe7ab44
2 changed files with 7 additions and 9 deletions
|
@ -36,10 +36,10 @@ const Dropdown = ({
|
||||||
>
|
>
|
||||||
<div className="flex h-full w-full select-none flex-row items-center">
|
<div className="flex h-full w-full select-none flex-row items-center">
|
||||||
<div className="h-full w-1/4"></div>
|
<div className="h-full w-1/4"></div>
|
||||||
<div className="flex w-2/4 flex-col items-center text-input-text">
|
<div className="flex w-2/4 flex-col items-center">
|
||||||
{options.find((o) => o.id === choice)?.label}
|
{options.find((o) => o.id === choice)?.label}
|
||||||
</div>
|
</div>
|
||||||
<div className="flex w-1/4 flex-col items-center text-input-text">
|
<div className="flex w-1/4 flex-col items-center">
|
||||||
<FaAngleDown />
|
<FaAngleDown />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -48,7 +48,7 @@ const Dropdown = ({
|
||||||
{options.map((option, index) => (
|
{options.map((option, index) => (
|
||||||
<div
|
<div
|
||||||
key={option.id}
|
key={option.id}
|
||||||
className={`border border-input-border-color bg-input p-2 text-input-text hover:bg-dropdown-option-hover-color ${
|
className={`border border-input-border-color bg-input p-2 hover:bg-dropdown-option-hover-color ${
|
||||||
index === options.length - 1 ? "rounded-b-2xl" : ""
|
index === options.length - 1 ? "rounded-b-2xl" : ""
|
||||||
}`}
|
}`}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
|
|
|
@ -15,15 +15,13 @@ export function DiscordPage() {
|
||||||
<div className="flex h-full flex-col items-center justify-center">
|
<div className="flex h-full flex-col items-center justify-center">
|
||||||
<img src="/services.png" className="h-72 w-72"></img>
|
<img src="/services.png" className="h-72 w-72"></img>
|
||||||
<div className="flex flex-col items-center p-6">
|
<div className="flex flex-col items-center p-6">
|
||||||
<p className="font-roboto text-4xl font-bold text-input-text">
|
<p className="font-roboto text-4xl font-bold">
|
||||||
{t("discord.title")}
|
{t("discord.title")}
|
||||||
</p>
|
</p>
|
||||||
<span className="font-roboto text-3xl text-input-text">
|
<span className="font-roboto text-3xl">{t("discord.sub")}</span>
|
||||||
{t("discord.sub")}
|
|
||||||
</span>
|
|
||||||
</div>
|
</div>
|
||||||
<a href="https://discord.gg/unblocker" className="p-6">
|
<a href="https://discord.gg/unblocker" className="p-6">
|
||||||
<button className="font-roboto h-14 w-56 rounded-2xl border border-input-border-color bg-input p-2 text-center text-xl text-input-text focus:outline-none">
|
<button className="font-roboto h-14 w-56 rounded-2xl border border-input-border-color bg-input p-2 text-center text-xl placeholder:text-input-text focus:outline-none">
|
||||||
{t("discord.button1")}
|
{t("discord.button1")}
|
||||||
</button>
|
</button>
|
||||||
</a>
|
</a>
|
||||||
|
@ -35,7 +33,7 @@ export function DiscordPage() {
|
||||||
}}
|
}}
|
||||||
className="p-6"
|
className="p-6"
|
||||||
>
|
>
|
||||||
<button className="font-roboto h-14 w-56 rounded-2xl border border-input-border-color bg-input p-2 text-center text-xl text-input-text focus:outline-none">
|
<button className="font-roboto h-14 w-56 rounded-2xl border border-input-border-color bg-input p-2 text-center text-xl placeholder:text-input-text focus:outline-none">
|
||||||
{t("discord.button2")}
|
{t("discord.button2")}
|
||||||
</button>
|
</button>
|
||||||
</a>
|
</a>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue