diff --git a/web/satellite/src/components/account/Profile.vue b/web/satellite/src/components/account/Profile.vue
index b8fb8a7cc..2652f9d2d 100644
--- a/web/satellite/src/components/account/Profile.vue
+++ b/web/satellite/src/components/account/Profile.vue
@@ -288,12 +288,8 @@
}
}
- @media screen and (max-height: 850px) {
+ @media screen and (max-height: 825px) {
.profile-container {
- height: 650px;
- overflow-y: scroll;
- margin-top: 70px;
-
&__secondary-container {
margin-top: 20px;
@@ -305,6 +301,43 @@
&__button-area {
margin-top: 20px;
}
+
+ margin-top: 70px;
+ }
+ }
+
+ @media screen and (max-height: 790px) {
+ .profile-container {
+ height: 535px;
+ overflow-y: scroll;
+
+ &::-webkit-scrollbar, &::-webkit-scrollbar-track, &::-webkit-scrollbar-thumb {
+ visibility: hidden;
+ }
+ }
+ }
+
+ @media screen and (max-height: 770px) {
+ .profile-container {
+ height: 515px;
+ }
+ }
+
+ @media screen and (max-height: 750px) {
+ .profile-container {
+ height: 495px;
+ }
+ }
+
+ @media screen and (max-height: 730px) {
+ .profile-container {
+ height: 475px;
+ }
+ }
+
+ @media screen and (max-height: 710px) {
+ .profile-container {
+ height: 455px;
}
}
diff --git a/web/satellite/src/components/account/billing/BillingArea.vue b/web/satellite/src/components/account/billing/BillingArea.vue
index 5ca021c6a..eb2875582 100644
--- a/web/satellite/src/components/account/billing/BillingArea.vue
+++ b/web/satellite/src/components/account/billing/BillingArea.vue
@@ -5,10 +5,12 @@
@@ -59,38 +61,32 @@
}
}
- @media screen and (max-height: 860px) {
- .billing-overflow {
+ @media screen and (max-height: 900px) {
+ .billing-container__table-holder {
overflow-y: scroll;
- height: 700px;
+ height: 555px;
+
+ &::-webkit-scrollbar, &::-webkit-scrollbar-track, &::-webkit-scrollbar-thumb {
+ visibility: hidden;
+ }
+ }
+ }
+
+ @media screen and (max-height: 860px) {
+ .billing-container__table-holder {
+ height: 535px;
}
}
@media screen and (max-height: 835px) {
- .billing-overflow {
- overflow-y: scroll;
- height: 660px;
- }
- }
-
- @media screen and (max-height: 815px) {
- .billing-overflow {
- overflow-y: scroll;
- height: 660px;
+ .billing-container__table-holder {
+ height: 495px;
}
}
@media screen and (max-height: 795px) {
- .billing-overflow {
- overflow-y: scroll;
- height: 640px;
- }
- }
-
- @media screen and (max-height: 780px) {
- .billing-overflow {
- overflow-y: scroll;
- height: 620px;
+ .billing-container__table-holder {
+ height: 475px;
}
}
diff --git a/web/satellite/src/components/navigation/TabNavigation.vue b/web/satellite/src/components/navigation/TabNavigation.vue
index b2c79e373..b9f3c0947 100644
--- a/web/satellite/src/components/navigation/TabNavigation.vue
+++ b/web/satellite/src/components/navigation/TabNavigation.vue
@@ -30,11 +30,11 @@
.tab-navigation-container {
width: auto;
display: flex;
+ border-bottom: 1px solid #AFB7C1;
&__item {
width: 150px;
height: 48px;
- border-bottom: 1px solid #AFB7C1;
display: flex;
align-items: center;
justify-content: center;
@@ -50,7 +50,7 @@
&:hover {
border-bottom: 3px solid #2683FF;
- p {
+ p {
color: #354049;
}
}
diff --git a/web/satellite/src/components/project/ProjectOverviewArea.vue b/web/satellite/src/components/project/ProjectOverviewArea.vue
index b3a0c3305..a797463fd 100644
--- a/web/satellite/src/components/project/ProjectOverviewArea.vue
+++ b/web/satellite/src/components/project/ProjectOverviewArea.vue
@@ -54,7 +54,6 @@ export default class ProjectDetailsArea extends Vue {
.project-overview {
padding: 44px 55px 55px 55px;
position: relative;
- overflow-x: hidden;
height: 85vh;
&__navigation {
diff --git a/web/satellite/src/components/project/UsageReport.vue b/web/satellite/src/components/project/UsageReport.vue
index ef2056304..278e73f62 100644
--- a/web/satellite/src/components/project/UsageReport.vue
+++ b/web/satellite/src/components/project/UsageReport.vue
@@ -41,9 +41,9 @@
Download Advanced Report
@@ -59,6 +61,10 @@
}
.billing-container {
+ &__table-holder {
+ margin-top: 20px;
+ }
+
&__table {
margin-top: 20px;
width: 100%;
@@ -76,16 +82,34 @@
}
}
- @media screen and (max-height: 880px) {
- .billing-overflow {
+ @media screen and (max-height: 900px) {
+ .billing-container__table-holder {
overflow-y: scroll;
- height: 600px;
+ height: 555px;
+
+ &::-webkit-scrollbar,
+ &::-webkit-scrollbar-track,
+ &::-webkit-scrollbar-thumb {
+ visibility: hidden;
+ }
}
}
- @media screen and (max-height: 700px) {
- .billing-overflow {
- height: 570px;
+ @media screen and (max-height: 860px) {
+ .billing-container__table-holder {
+ height: 535px;
+ }
+ }
+
+ @media screen and (max-height: 835px) {
+ .billing-container__table-holder {
+ height: 495px;
+ }
+ }
+
+ @media screen and (max-height: 795px) {
+ .billing-container__table-holder {
+ height: 475px;
}
}