From e822c712ede0d56e413d24c97ce6eec95d80cf29 Mon Sep 17 00:00:00 2001 From: cv <34649812+cpvalente@users.noreply.github.com> Date: Tue, 29 Aug 2023 14:32:28 +0200 Subject: [PATCH] feat: operator view --- .../operator/follow-button/FollowButton.module.scss | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/apps/client/src/features/operator/follow-button/FollowButton.module.scss b/apps/client/src/features/operator/follow-button/FollowButton.module.scss index 74b147da0..cbbdd2240 100644 --- a/apps/client/src/features/operator/follow-button/FollowButton.module.scss +++ b/apps/client/src/features/operator/follow-button/FollowButton.module.scss @@ -3,7 +3,7 @@ .followButton { position: relative; - bottom: 120px; + bottom: 100px; margin: 0 auto; z-index: 1; @@ -27,3 +27,10 @@ transition: bottom 1s; bottom: -0; } + +// tablet +@media (min-width: $min-tablet) { + .followButton { + bottom: 150px; + } +}