Skip to content

Commit a930d2a

Browse files
chelleDrCJodi
authored andcommitted
feat: added contact info
1 parent a81a922 commit a930d2a

2 files changed

Lines changed: 25 additions & 23 deletions

File tree

styles/globals.css

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -31,23 +31,22 @@ body {
3131
}
3232

3333
/* Change Autocomplete styles in Chrome*/
34-
input:-webkit-autofill,
35-
input:-webkit-autofill:hover,
36-
input:-webkit-autofill:focus,
37-
textarea:-webkit-autofill,
38-
textarea:-webkit-autofill:hover,
39-
textarea:-webkit-autofill:focus,
40-
select:-webkit-autofill,
41-
select:-webkit-autofill:hover,
42-
select:-webkit-autofill:focus {
43-
border-bottom: 1px solid #ffffff;
44-
-webkit-text-fill-color: rgb(255, 255, 255);
45-
-webkit-box-shadow: 0 0 0px 1000px #25334100 inset;
46-
box-shadow: 0 0 0px 1000px #25334100 inset;
47-
transition: background-color 5000s ease-in-out 0s;
48-
color: white;
49-
}
50-
34+
input:-webkit-autofill,
35+
input:-webkit-autofill:hover,
36+
input:-webkit-autofill:focus,
37+
textarea:-webkit-autofill,
38+
textarea:-webkit-autofill:hover,
39+
textarea:-webkit-autofill:focus,
40+
select:-webkit-autofill,
41+
select:-webkit-autofill:hover,
42+
select:-webkit-autofill:focus {
43+
border-bottom: 1px solid #ffffff;
44+
-webkit-text-fill-color: rgb(255, 255, 255);
45+
-webkit-box-shadow: 0 0 0px 1000px #25334100 inset;
46+
box-shadow: 0 0 0px 1000px #25334100 inset;
47+
transition: background-color 5000s ease-in-out 0s;
48+
color: white;
49+
}
5150

5251
:root {
5352
--radius: 0.5rem;

tailwind.config.ts

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ const config: Config = {
3636
'button-hovered': 'var(--button-hovered)',
3737
},
3838
backgroundImage: {
39-
'radial-custom': 'radial-gradient(at top right, #FFC201 0%, #1A3E2A 84%)',
39+
'radial-custom':
40+
'radial-gradient(at top right, #FFC201 0%, #1A3E2A 84%)',
4041
'gradient-ltr-lightgreen-transparent':
4142
'linear-gradient(to right, #36FF90,rgba(115, 115, 115, 0))',
4243
'gradient-utd-lightgreen-darkgreen':
@@ -99,13 +100,15 @@ const config: Config = {
99100
},
100101
plugins: [
101102
require('tailwindcss-animate'),
102-
function (pluginApi: { addUtilities: (utilities: Record<string, any>) => void }) {
103+
function (pluginApi: {
104+
addUtilities: (utilities: Record<string, any>) => void;
105+
}) {
103106
const { addUtilities } = pluginApi;
104107
addUtilities({
105-
".text-shadow-sm": { textShadow: "1px 1px 2px rgba(0, 0, 0, 0.3)" },
106-
".text-shadow-md": { textShadow: "2px 2px 4px rgba(0, 0, 0, 0.4)" },
107-
".text-shadow-lg": { textShadow: "3px 3px 6px rgba(0, 0, 0, 0.5)" },
108-
".text-shadow-xl": { textShadow: "4px 4px 8px rgba(0, 0, 0, 0.6)" },
108+
'.text-shadow-sm': { textShadow: '1px 1px 2px rgba(0, 0, 0, 0.3)' },
109+
'.text-shadow-md': { textShadow: '2px 2px 4px rgba(0, 0, 0, 0.4)' },
110+
'.text-shadow-lg': { textShadow: '3px 3px 6px rgba(0, 0, 0, 0.5)' },
111+
'.text-shadow-xl': { textShadow: '4px 4px 8px rgba(0, 0, 0, 0.6)' },
109112
});
110113
},
111114
],

0 commit comments

Comments
 (0)