From cb6060e3ca0ca77dbe8ecbe65e9f8e963f930e46 Mon Sep 17 00:00:00 2001 From: OCDkirby Date: Thu, 16 Nov 2023 15:08:17 -0600 Subject: [PATCH] Change gradient --- src/App.vue | 42 ++++++++++++++++++++++++++---------------- 1 file changed, 26 insertions(+), 16 deletions(-) diff --git a/src/App.vue b/src/App.vue index 45b4e21..3c5fc95 100644 --- a/src/App.vue +++ b/src/App.vue @@ -33,9 +33,14 @@ const lightMenu: Partial = { itemIconColorHoverHorizontal: '#1D5DEC', } +// const gradientTextOverrides: Partial = { +// colorEndInfo: '#1D5DEC', +// colorStartInfo: '#4C3E9C', +// } const gradientTextOverrides: Partial = { - colorEndInfo: '#1D5DEC', - colorStartInfo: '#4C3E9C', + rotate: '2deg', + colorEndInfo: '#150fff', + colorStartInfo: '#9600ff', } const typographyOverrides: Partial = { @@ -48,15 +53,15 @@ const typographyOverrides: Partial = { const darkTypography: Partial = { ...typographyOverrides, - textColor: '#F8F2F1' + textColor: '#F8F2F1' } const lightTypography: Partial = { ...typographyOverrides, - textColor: '#121420' + textColor: '#121420' } -const cardOverrides : Partial = { +const cardOverrides: Partial = { titleFontWeight: 'bold', titleFontSizeHuge: '16pt', titleFontSizeMedium: '16pt', @@ -65,7 +70,7 @@ const cardOverrides : Partial = { borderRadius: '20px' } -const lightCard : Partial = { +const lightCard: Partial = { ...cardOverrides, borderColor: '#1D5DEC' } @@ -110,10 +115,10 @@ const darkThemeOverrides: GlobalThemeOverrides = {
- +
- +
@@ -215,14 +220,15 @@ const darkThemeOverrides: GlobalThemeOverrides = { } .wrapper { - height: 100%; - overflow: hidden; + height: 100%; + overflow: hidden; margin: 10px 10px; box-sizing: border-box; } .top-portion-wrapper { - display: flex; /* enables flex content for its children */ + display: flex; + /* enables flex content for its children */ flex-direction: column; } @@ -242,12 +248,15 @@ const darkThemeOverrides: GlobalThemeOverrides = { } .column { - height: 100%; /* allows both columns to span the full height of the browser window */ + height: 100%; + /* allows both columns to span the full height of the browser window */ display: flex; - flex-direction: column; /* stacks the left and right headers above the bottom content */ + flex-direction: column; + /* stacks the left and right headers above the bottom content */ flex-wrap: nowrap; margin: 8px; } + .column-content { display: flex; flex-flow: column nowrap; @@ -256,7 +265,8 @@ const darkThemeOverrides: GlobalThemeOverrides = { } #main-column { - /* flex-shrink: 0; /* makes sure that content is not cut off in a smaller browser window */ /* [OCDkirby: so that was a fucking lie.] */ + /* flex-shrink: 0; /* makes sure that content is not cut off in a smaller browser window */ + /* [OCDkirby: so that was a fucking lie.] */ flex-shrink: 1; flex-grow: 2; align-self: center; @@ -282,7 +292,7 @@ const darkThemeOverrides: GlobalThemeOverrides = { .top-right { flex-shrink: 0; display: flex; - + } .joke-wrapper {