mirror of
https://github.com/NebulaServices/Nebula.git
synced 2025-05-16 13:00: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="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}
|
||||
</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 />
|
||||
</div>
|
||||
</div>
|
||||
|
@ -48,7 +48,7 @@ const Dropdown = ({
|
|||
{options.map((option, index) => (
|
||||
<div
|
||||
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" : ""
|
||||
}`}
|
||||
onClick={() => {
|
||||
|
|
|
@ -15,15 +15,13 @@ export function DiscordPage() {
|
|||
<div className="flex h-full flex-col items-center justify-center">
|
||||
<img src="/services.png" className="h-72 w-72"></img>
|
||||
<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")}
|
||||
</p>
|
||||
<span className="font-roboto text-3xl text-input-text">
|
||||
{t("discord.sub")}
|
||||
</span>
|
||||
<span className="font-roboto text-3xl">{t("discord.sub")}</span>
|
||||
</div>
|
||||
<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")}
|
||||
</button>
|
||||
</a>
|
||||
|
@ -35,7 +33,7 @@ export function DiscordPage() {
|
|||
}}
|
||||
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")}
|
||||
</button>
|
||||
</a>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue