Skip to content

Commit adcd239

Browse files
author
Vanshika
committed
Add horizontal padding to help body and remove conflicting media query
Add 50 horizontal padding to the help body container to prevent the tour navigation arrows from overlapping text content. Remove a media query that changed arrow positioning to relative at 390px viewport width, as it conflicted with existing responsive rules and caused layout issues.
1 parent 57b1738 commit adcd239

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

css/activities.css

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1182,7 +1182,7 @@ table {
11821182
overflow-x: hidden;
11831183
overflow-y: auto;
11841184
width: 350px;
1185-
padding: 1rem 1rem 0 0;
1185+
padding: 1rem 50px 0 50px;
11861186
display: flex;
11871187
flex-direction: column;
11881188
justify-content: center;
@@ -1968,20 +1968,6 @@ table {
19681968
flex-direction: row !important;
19691969
}
19701970

1971-
@media (max-width: 390px) {
1972-
#right-arrow,
1973-
#left-arrow {
1974-
position: relative;
1975-
top: auto;
1976-
left: auto;
1977-
margin-top: 10px;
1978-
margin-left: auto;
1979-
/* Center the arrows horizontally */
1980-
margin-right: auto;
1981-
display: block;
1982-
clear: both;
1983-
}
1984-
}
19851971
.logo-container{
19861972
position: absolute;
19871973
bottom: 1px; /* Distance from the bottom */

0 commit comments

Comments
 (0)