diff --git a/.lh/src/styles/blocks/_button.scss.json b/.lh/src/styles/blocks/_button.scss.json index f3e6598f90..ad18646e3a 100644 --- a/.lh/src/styles/blocks/_button.scss.json +++ b/.lh/src/styles/blocks/_button.scss.json @@ -3,7 +3,7 @@ "activeCommit": 0, "commits": [ { - "activePatchIndex": 5, + "activePatchIndex": 6, "patches": [ { "date": 1708427369629, @@ -28,6 +28,10 @@ { "date": 1708427501648, "content": "Index: \n===================================================================\n--- \n+++ \n@@ -5,9 +5,9 @@\n width: 100%;\n height: 56px;\n border: none;\n @include for-desktop {\n- width: calc(1260px / 324px);\n+ width: calc(1260px / 3.88);\n }\n &:hover {\n background-color: #F8F8FA;\n border: 2px solid #F0F1F4;\n" + }, + { + "date": 1708427533196, + "content": "Index: \n===================================================================\n--- \n+++ \n@@ -0,0 +1,20 @@\n+.button {\n+ padding: 0 48px;\n+ border-radius: 8px;\n+ background-color: $button-color;\n+ width: 100%;\n+ height: 56px;\n+ border: none;\n+ \n+ @include for-desktop {\n+ width: calc(1260px / 3.889);\n+ }\n+ &:hover {\n+ background-color: #F8F8FA;\n+ border: 2px solid #F0F1F4;\n+ cursor: pointer;\n+ }\n+ &:hover > .text--button {\n+ color: #292929;\n+ }\n+}\n" } ], "date": 1708427369629, diff --git a/src/styles/blocks/_button.scss b/src/styles/blocks/_button.scss index 9018c46746..3c778d12e7 100644 --- a/src/styles/blocks/_button.scss +++ b/src/styles/blocks/_button.scss @@ -5,8 +5,9 @@ width: 100%; height: 56px; border: none; + @include for-desktop { - width: calc(1260px / 3.889); + width: calc(1260px / 3.89); } &:hover { background-color: #F8F8FA;