Skip to content

Commit fe013a3

Browse files
committed
Fix some components not responsible on mobile
1 parent 787e150 commit fe013a3

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

client/src/components/CookieNotification/styles.css

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
.cookie--block {
2-
z-index: 2147483635 !important;
3-
position: fixed !important;
4-
width: 500px !important;
5-
left: 0 !important;
6-
right: 0 !important;
7-
bottom: 12px !important;
8-
margin: 0 auto !important;
2+
z-index: 2147483635;
3+
position: fixed;
4+
max-width: 450px;
5+
left: 0;
6+
right: 0;
7+
bottom: 12px;
8+
margin: 0 auto;
99
}
1010

1111
.cookie--body {
12-
padding-top: 10px !important;
13-
padding-right: 45px !important;
14-
padding-bottom: 10px !important;
15-
padding-left: 30px !important;
16-
color: #ffffff !important;
17-
background-color: rgba(37, 37, 37, 1) !important;
18-
box-shadow: 0 10px 24px 0 rgba(54, 61, 77, 0.5) !important;
12+
padding-top: 10px;
13+
padding-right: 45px;
14+
padding-bottom: 10px;
15+
padding-left: 30px;
16+
color: #ffffff;
17+
background-color: rgba(37, 37, 37, 1);
18+
box-shadow: 0 10px 24px 0 rgba(54, 61, 77, 0.5);
1919
border: 1px solid #aaa;
2020
}
2121

2222
.cookie--description {
23-
line-height: 1.5 !important;
24-
font-size: 14px !important;
25-
margin: 0 24px 0 0 !important;
23+
line-height: 1.5;
24+
font-size: 14px;
25+
margin: 0 24px 0 0;
2626
font-weight: 400;
2727
}
2828

@@ -34,7 +34,7 @@
3434
position: absolute;
3535
top: -9px;
3636
right: 0px;
37-
padding: 20px !important;
37+
padding: 20px;
3838
}
3939

4040
.cookie--close button {

client/src/modules/skeleton/NavBar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import logo from './assets/logo-dark.png';
66
export default () => (
77
<div className="nav-container">
88
<div>
9-
<nav className="bar bar-1 hidden-xs">
9+
<nav className="bar bar-1">
1010
<div className="container">
1111
<div className="row">
1212
<div className="col-lg-1 hidden-xs col-md-3">
@@ -18,7 +18,7 @@ export default () => (
1818
</div>
1919
<div className="col-lg-11 col-md-12 text-right text-left-xs text-left-sm">
2020
<div className="bar__module">
21-
<NavLink to="/manage" className="btn btn--sm type--uppercase">
21+
<NavLink to="/manage" className="btn btn--sm type--uppercase hidden-xs">
2222
<span className="btn__text">Manage my mocks</span>
2323
</NavLink>
2424

0 commit comments

Comments
 (0)