From 85b5b047d41be06c5c9c2c3d0a3ffcfa4b40adc9 Mon Sep 17 00:00:00 2001 From: OCDkirby Date: Tue, 21 Nov 2023 12:35:58 -0600 Subject: [PATCH] feat: authenticity information --- src/App.vue | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index ac75be7..75c3195 100644 --- a/src/App.vue +++ b/src/App.vue @@ -3,13 +3,14 @@ import 'vfonts/FiraSans.css'; import { defineComponent, ref } from 'vue'; -import { GlobalThemeOverrides, darkTheme, NLayout, NCarousel } from 'naive-ui' +import { GlobalThemeOverrides, darkTheme, NLayout, NCarousel, NText, NAlert } from 'naive-ui' import { BuiltInGlobalTheme } from 'naive-ui/es/themes/interface'; import { CardThemeVars } from 'naive-ui/es/card/styles'; import { TypographyThemeVars } from 'naive-ui/es/typography/styles'; import { GradientTextThemeVars } from 'naive-ui/es/gradient-text/styles'; import { MenuThemeVars } from 'naive-ui/es/menu/styles'; import { ButtonThemeVars } from 'naive-ui/es/button/styles'; +import { AlertThemeVars } from 'naive-ui/es/alert/styles'; const menuOverrides: Partial = { fontSize: '12pt', @@ -121,6 +122,10 @@ const darkThemeOverrides: GlobalThemeOverrides = { + + This is the only official RPCSX site. others such as rpcsx.com are not affiliated + with RPCSX. +
@@ -149,6 +154,8 @@ const darkThemeOverrides: GlobalThemeOverrides = { + + © {{ new Date().getFullYear() }} - RPCSX (the real one)
@@ -172,6 +179,23 @@ const darkThemeOverrides: GlobalThemeOverrides = { margin: 0px 16px; } +.copyright-text { + display: flex; + align-self: flex-start; + padding-left: 10%; + font-weight: bold; + font-size: 12pt; +} + +.n-alert { + margin: 8px 10% +} + +.alert-text { + font-weight: bold; + font-size: 12pt; +} + .carousel-img { width: 100%; height: 100%; @@ -201,6 +225,7 @@ const darkThemeOverrides: GlobalThemeOverrides = { .bottom-portion-wrapper { margin-top: 30px; + gap: 16px; display: flex; flex-flow: column nowrap; align-items: center;