mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-16 01:32:02 +10:00
- implement about section
This commit is contained in:
35
src/styles/forms.css
Normal file
35
src/styles/forms.css
Normal file
@ -0,0 +1,35 @@
|
||||
label {
|
||||
@apply flex flex-col;
|
||||
}
|
||||
|
||||
label > span:first-child {
|
||||
@apply mb-1 text-primary-600 font-semibold tracking-wide text-xs uppercase;
|
||||
}
|
||||
|
||||
label > p {
|
||||
@apply mt-1 text-red-600 text-xs;
|
||||
}
|
||||
|
||||
label input,
|
||||
label textarea,
|
||||
label select {
|
||||
@apply w-full py-3 px-4 rounded text-primary-900 bg-primary-200 border border-transparent appearance-none;
|
||||
}
|
||||
|
||||
label input::placeholder,
|
||||
label textarea::placeholder,
|
||||
label select::placeholder {
|
||||
@apply opacity-50;
|
||||
}
|
||||
|
||||
label input:hover,
|
||||
label textarea:hover,
|
||||
label select:hover {
|
||||
@apply outline-none border-primary-400;
|
||||
}
|
||||
|
||||
label input:focus,
|
||||
label textarea:focus,
|
||||
label select:focus {
|
||||
@apply outline-none border-primary-600;
|
||||
}
|
||||
@ -26,14 +26,6 @@ section {
|
||||
@apply grid grid-cols-1 gap-8;
|
||||
}
|
||||
|
||||
label {
|
||||
@apply flex flex-col;
|
||||
}
|
||||
|
||||
label > span:first-child {
|
||||
@apply mb-1 text-primary-600 font-semibold tracking-wide text-xs uppercase;
|
||||
}
|
||||
|
||||
.MuiTooltip-tooltip {
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user