From b862ee185606f108dc07cafd96e35b25e6c33caa Mon Sep 17 00:00:00 2001 From: Kostya Date: Sat, 23 Dec 2023 10:16:26 +0300 Subject: [PATCH] added media request for profile --- .../src/assets/css/PagesStyles/profile.css | 30 ++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/luckydiamond/src/assets/css/PagesStyles/profile.css b/luckydiamond/src/assets/css/PagesStyles/profile.css index 6cde885..39bd583 100644 --- a/luckydiamond/src/assets/css/PagesStyles/profile.css +++ b/luckydiamond/src/assets/css/PagesStyles/profile.css @@ -179,4 +179,32 @@ .withdraw-color h3 { color: #EA3D38; -} \ No newline at end of file +} + +/* Media */ + +@media screen and (min-device-width: 1400px) and (max-device-width: 1600px) { + .profile__card h2 { + width: 72%; + } + .btn-margin { + padding-right: 56%; + } + .withdraw { + padding-right: 56%; + } +} + +@media screen and (min-device-width: 1200px) and (max-device-width: 1399px) { + .profile__card h2 { + width: 80%; + } + .btn-margin { + padding-right: 66%; + } + .withdraw { + padding-right: 66%; + } +} + +/* /Media */ \ No newline at end of file