diff options
Diffstat (limited to 'client/src/components')
-rw-r--r-- | client/src/components/Header/Header.module.css | 4 | ||||
-rw-r--r-- | client/src/components/LabelCard/LabelCard.module.css | 2 | ||||
-rw-r--r-- | client/src/components/UpdateInput/UpdateInput.module.css | 19 |
3 files changed, 14 insertions, 11 deletions
diff --git a/client/src/components/Header/Header.module.css b/client/src/components/Header/Header.module.css index daf82ef..ade1e6f 100644 --- a/client/src/components/Header/Header.module.css +++ b/client/src/components/Header/Header.module.css @@ -16,6 +16,6 @@ } .header__image { - width: 250px; - height: 250px; + width: 150px; + height: 150px; } diff --git a/client/src/components/LabelCard/LabelCard.module.css b/client/src/components/LabelCard/LabelCard.module.css index 8511596..3b80827 100644 --- a/client/src/components/LabelCard/LabelCard.module.css +++ b/client/src/components/LabelCard/LabelCard.module.css @@ -12,6 +12,8 @@ .card__image { border: 3px solid var(--color-black); border-radius: 10px; + width: 158px; + height: 158px; } .card__title { diff --git a/client/src/components/UpdateInput/UpdateInput.module.css b/client/src/components/UpdateInput/UpdateInput.module.css index d4d7ee5..391937d 100644 --- a/client/src/components/UpdateInput/UpdateInput.module.css +++ b/client/src/components/UpdateInput/UpdateInput.module.css @@ -1,8 +1,13 @@ +.input__edit { + display: flex; + flex-direction: row; +} + .input { display: flex; justify-content: center; font-family: 'Barlow'; - font-size: var(--font-medium-s); + font-size: 1.75rem; } .input__container { @@ -10,16 +15,12 @@ flex-direction: column; } -.input__edit { - display: flex; - flex-direction: row; -} - .input__field { - width: 330px; + width: 500px; + height: 80px; margin: 10px 0px; padding: 18px 10px; border: 3px solid; border-radius: 10px; - font-size: 1rem; -} + font-size: 1.5rem; +}
\ No newline at end of file |