diff options
| author | rohan09-raj <[email protected]> | 2024-02-19 22:30:12 +0530 |
|---|---|---|
| committer | Blaster4385 <[email protected]> | 2024-02-21 23:52:45 +0530 |
| commit | f407b687e4b0721809f799390de3bfdb88de2df7 (patch) | |
| tree | 35baf554ce0d6df732044faf93e906cfe9d18fb1 /client/src/components/CustomSelect | |
| parent | fbb305f7458a468ef9e75cba6000e05cdcdf494c (diff) | |
feat: implemented responsive design
Diffstat (limited to 'client/src/components/CustomSelect')
| -rw-r--r-- | client/src/components/CustomSelect/CustomSelect.module.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/client/src/components/CustomSelect/CustomSelect.module.css b/client/src/components/CustomSelect/CustomSelect.module.css index 59fc828..1cd7b64 100644 --- a/client/src/components/CustomSelect/CustomSelect.module.css +++ b/client/src/components/CustomSelect/CustomSelect.module.css @@ -40,3 +40,14 @@ border-bottom: none; } } + +@media screen and (max-width: 480px) { + .select { + width: 8rem; + font-size: 14px; + } + + .selected__option { + padding: 8px; + } +} |