Skip to content

Commit

Permalink
minor. remove padding on small screen
Browse files Browse the repository at this point in the history
  • Loading branch information
seungpark committed Nov 25, 2024
1 parent 67929de commit fd79446
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/components/ActionBar/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ export const getContainerStyling = (template) => {
searchContainerClassname,
fakeColumns = false;

console.log('check template ', template);
switch (template) {
case 'product-landing':
containerClassname = gridStyling;
Expand Down Expand Up @@ -146,7 +145,10 @@ export const ActionBarSearchContainer = styled.div`
align-items: center;
width: 100%;
background: inherit;
padding-right: ${theme.size.default};
@media ${theme.screenSize.mediumAndUp} {
padding-right: ${theme.size.default};
}
@media ${theme.screenSize.upToLarge} {
max-width: unset;
Expand Down

0 comments on commit fd79446

Please sign in to comment.