Skip to content

Commit 1e89517

Browse files
committed
fix App Padding & searchBar on small resolutions
1 parent 8f8a375 commit 1e89517

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

src/App.css

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ a {
2727
.App {
2828
flex-direction: row;
2929
color: var(--primary-text-color);
30-
padding: 1%;
3130
display: flex;
3231
flex-direction: column;
3332
}
@@ -57,7 +56,7 @@ a {
5756
align-content: center;
5857
flex-wrap: wrap;
5958
height:86px;
60-
margin-bottom: 12px;
59+
margin: 0 1% 12px 1%;
6160
}
6261

6362
.AppFooter {
@@ -87,6 +86,7 @@ a {
8786
flex: 1 1 auto;
8887
display: flex;
8988
gap: 12px;
89+
padding: 1%;
9090
position: relative;
9191
overflow:hidden;
9292
padding-bottom: 12px;
@@ -873,13 +873,20 @@ Producthunt item
873873
.block {
874874
width: calc(96vw/3);
875875
}
876+
.searchBarInput {
877+
width: 200px;
878+
}
876879
}
877880

878881
/* Large devices (desktops, 992px and up)*/
879882
@media only screen and (min-width: 992px) {
880883
.block {
881884
width: calc(96vw/3);
882885
}
886+
887+
.searchBarInput {
888+
width: 480px;
889+
}
883890
}
884891

885892
/* X-Large devices (large desktops, 1200px and up)*/

0 commit comments

Comments
 (0)