Skip to content

Commit

Permalink
Fix some components not responsible on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-lafont committed Jun 8, 2020
1 parent 787e150 commit fe013a3
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
36 changes: 18 additions & 18 deletions client/src/components/CookieNotification/styles.css
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
.cookie--block {
z-index: 2147483635 !important;
position: fixed !important;
width: 500px !important;
left: 0 !important;
right: 0 !important;
bottom: 12px !important;
margin: 0 auto !important;
z-index: 2147483635;
position: fixed;
max-width: 450px;
left: 0;
right: 0;
bottom: 12px;
margin: 0 auto;
}

.cookie--body {
padding-top: 10px !important;
padding-right: 45px !important;
padding-bottom: 10px !important;
padding-left: 30px !important;
color: #ffffff !important;
background-color: rgba(37, 37, 37, 1) !important;
box-shadow: 0 10px 24px 0 rgba(54, 61, 77, 0.5) !important;
padding-top: 10px;
padding-right: 45px;
padding-bottom: 10px;
padding-left: 30px;
color: #ffffff;
background-color: rgba(37, 37, 37, 1);
box-shadow: 0 10px 24px 0 rgba(54, 61, 77, 0.5);
border: 1px solid #aaa;
}

.cookie--description {
line-height: 1.5 !important;
font-size: 14px !important;
margin: 0 24px 0 0 !important;
line-height: 1.5;
font-size: 14px;
margin: 0 24px 0 0;
font-weight: 400;
}

Expand All @@ -34,7 +34,7 @@
position: absolute;
top: -9px;
right: 0px;
padding: 20px !important;
padding: 20px;
}

.cookie--close button {
Expand Down
4 changes: 2 additions & 2 deletions client/src/modules/skeleton/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import logo from './assets/logo-dark.png';
export default () => (
<div className="nav-container">
<div>
<nav className="bar bar-1 hidden-xs">
<nav className="bar bar-1">
<div className="container">
<div className="row">
<div className="col-lg-1 hidden-xs col-md-3">
Expand All @@ -18,7 +18,7 @@ export default () => (
</div>
<div className="col-lg-11 col-md-12 text-right text-left-xs text-left-sm">
<div className="bar__module">
<NavLink to="/manage" className="btn btn--sm type--uppercase">
<NavLink to="/manage" className="btn btn--sm type--uppercase hidden-xs">
<span className="btn__text">Manage my mocks</span>
</NavLink>

Expand Down

0 comments on commit fe013a3

Please sign in to comment.