mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-18 18:51:32 +10:00
🚀 release v3.0.0
This commit is contained in:
3
client/styles/pages/Build.module.scss
Normal file
3
client/styles/pages/Build.module.scss
Normal file
@ -0,0 +1,3 @@
|
||||
.container {
|
||||
@apply h-screen w-screen overflow-hidden;
|
||||
}
|
||||
11
client/styles/pages/Dashboard.module.scss
Normal file
11
client/styles/pages/Dashboard.module.scss
Normal file
@ -0,0 +1,11 @@
|
||||
.container {
|
||||
@apply m-4 grid gap-6 sm:mx-6;
|
||||
|
||||
header {
|
||||
@apply flex items-center justify-between;
|
||||
}
|
||||
}
|
||||
|
||||
.resumes {
|
||||
@apply grid grid-cols-1 gap-8 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 xl:grid-cols-6;
|
||||
}
|
||||
50
client/styles/pages/Home.module.scss
Normal file
50
client/styles/pages/Home.module.scss
Normal file
@ -0,0 +1,50 @@
|
||||
.container {
|
||||
@apply m-6 grid gap-8 text-center md:m-8 md:text-left;
|
||||
|
||||
footer > div {
|
||||
@apply text-xs font-medium opacity-50 mt-2;
|
||||
}
|
||||
}
|
||||
|
||||
.header {
|
||||
@apply flex flex-col items-center gap-8 md:flex-row;
|
||||
|
||||
.logo {
|
||||
@apply h-64 w-64;
|
||||
}
|
||||
|
||||
.main {
|
||||
@apply grid md:flex-1 md:justify-start;
|
||||
|
||||
h1 {
|
||||
@apply text-4xl font-bold;
|
||||
}
|
||||
|
||||
h2 {
|
||||
@apply opacity-50;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.buttonWrapper {
|
||||
@apply mt-8 flex justify-center gap-4 md:justify-start;
|
||||
}
|
||||
|
||||
.section {
|
||||
h6 {
|
||||
@apply mb-2 text-xs font-bold uppercase tracking-wide;
|
||||
}
|
||||
|
||||
p {
|
||||
@apply text-sm leading-relaxed;
|
||||
}
|
||||
}
|
||||
|
||||
.screenshots {
|
||||
@apply grid grid-cols-2 sm:grid-cols-3 lg:grid-cols-6 gap-4;
|
||||
|
||||
.image {
|
||||
@apply relative h-64 rounded hover:opacity-75;
|
||||
@apply border-2 dark:border-neutral-700;
|
||||
}
|
||||
}
|
||||
20
client/styles/pages/Preview.module.scss
Normal file
20
client/styles/pages/Preview.module.scss
Normal file
@ -0,0 +1,20 @@
|
||||
.container {
|
||||
@apply my-8 flex flex-col items-center;
|
||||
}
|
||||
|
||||
.download {
|
||||
@apply fixed bottom-6 right-6;
|
||||
|
||||
button {
|
||||
@apply flex gap-2 px-4 py-3 shadow dark:bg-neutral-600/25;
|
||||
@apply rounded-full transition-colors;
|
||||
|
||||
&:hover {
|
||||
@apply dark:bg-neutral-500/25;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.footer {
|
||||
@apply mt-6 text-center text-xs font-medium opacity-50;
|
||||
}
|
||||
3
client/styles/pages/Printer.module.scss
Normal file
3
client/styles/pages/Printer.module.scss
Normal file
@ -0,0 +1,3 @@
|
||||
.container {
|
||||
@apply bg-white text-black;
|
||||
}
|
||||
Reference in New Issue
Block a user