diff --git a/src/App.vue b/src/App.vue index 033c7a3..45b5406 100644 --- a/src/App.vue +++ b/src/App.vue @@ -9,7 +9,7 @@
- +
@@ -130,6 +130,18 @@ export default { margin-top: 1rem; margin-bottom: 3rem; } +@media screen and (max-width: 768px) { + .main { + padding-left: 15px; + padding-right: 15px; + } + .content-wrapper { + max-width: 100%; + } + .refresh-settings { + display: none; + } +} \ No newline at end of file diff --git a/src/components/EndpointHistory.vue b/src/components/EndpointHistory.vue index 1f5e928..e507016 100644 --- a/src/components/EndpointHistory.vue +++ b/src/components/EndpointHistory.vue @@ -47,6 +47,12 @@ export default { background-color: var(--orange); } .grey { - background-color: grey; + background-color: var(--grey); +} +@media screen and (max-width: 768px) { + .history { + width: 100%; + margin-top: 0.4rem + } } \ No newline at end of file diff --git a/src/components/Header.vue b/src/components/Header.vue index 490bcf8..ecdda5a 100644 --- a/src/components/Header.vue +++ b/src/components/Header.vue @@ -26,4 +26,12 @@ h2 { margin: 0; margin-left: 20px; } +@media screen and (max-width: 768px) { + .logo { + width: 40px; + } + h2 { + font-size: 1.2rem; + } +} \ No newline at end of file diff --git a/src/components/OverallStatus.vue b/src/components/OverallStatus.vue index 7a984ac..34ddcc3 100644 --- a/src/components/OverallStatus.vue +++ b/src/components/OverallStatus.vue @@ -55,4 +55,12 @@ export default { span { margin-left: 1rem; } +@media screen and (max-width: 768px) { + .status-wrapper { + font-size: 1rem; + } + .icon { + font-size: 20px; + } +} \ No newline at end of file