diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 82785db18..dfac48371 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -437,7 +437,7 @@ jobs: report_name: Coverage Frontend type: lcov result_path: ./coverage/lcov.info - min_coverage: 92 + min_coverage: 93 token: ${{ github.token }} ############################################################################## diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 1933e380b..3ec57ca70 100755 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -30,7 +30,7 @@ export default { font-family: 'WorkSans', sans-serif !important; } .appContent { - min-width: 360px; + min-width: 330px; max-width: 1320px; margin-right: auto; margin-left: auto; diff --git a/frontend/src/components/Auth/AuthNavbar.vue b/frontend/src/components/Auth/AuthNavbar.vue index ade6340a6..7d8c6f08a 100644 --- a/frontend/src/components/Auth/AuthNavbar.vue +++ b/frontend/src/components/Auth/AuthNavbar.vue @@ -53,6 +53,7 @@ export default { .auth-header { font-family: 'Open Sans', sans-serif !important; + height: 150px; } .sheet-img { @@ -61,6 +62,17 @@ export default { max-width: 64%; } +@media screen and (max-width: 1024px) { + .auth-header { + height: 100px; + } +} + +@media screen and (max-width: 768px) { + .auth-header { + height: 70px; + } +} @media screen and (max-width: 450px) { .sheet-img { top: -15px; diff --git a/frontend/src/components/ClipboardCopy.vue b/frontend/src/components/ClipboardCopy.vue index 7c4e014ec..4374f7182 100644 --- a/frontend/src/components/ClipboardCopy.vue +++ b/frontend/src/components/ClipboardCopy.vue @@ -1,17 +1,31 @@