Skip to content

Commit ed36f2c

Browse files
committed
committing ui bug fixes
1 parent 013cee4 commit ed36f2c

File tree

8 files changed

+44
-1
lines changed

8 files changed

+44
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
FROM node:10.16.2
2-
WORKDIR /usr/src/app
2+
WORKDIR /usr/src/app
33
COPY package*.json ./
44
RUN npm i

assets/readme_logo.png

33.6 KB
Loading

demo.gif

3.54 MB
Loading
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
.body-container {
2+
height: 94%;
3+
display: grid;
4+
grid-template-columns: 1fr 2fr;
5+
grid-template-rows: 8fr 1fr;
6+
grid-template-areas:
7+
'actions states'
8+
'travel travel'
9+
'buttons buttons';
10+
}
11+
12+
/* if extension width is less than 500px, stack the body containers */
13+
@media (max-width: 500px) {
14+
.body-container {
15+
grid-template-rows: 3fr 5fr 1fr;
16+
grid-template-columns: auto;
17+
grid-template-areas:
18+
'actions'
19+
'states'
20+
'travel'
21+
'buttons';
22+
}
23+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.error-container {
2+
height: 100%;
3+
margin: 0 auto;
4+
background-color: $brand-color;
5+
overflow: hidden;
6+
7+
display: grid;
8+
justify-content: center;
9+
a {
10+
color: white;
11+
margin-top: 5%;
12+
height: 3%;
13+
}
14+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.main-container {
2+
height: 100%;
3+
margin: 0 auto;
4+
background-color: $brand-color;
5+
overflow: hidden;
6+
}
23.6 KB
Loading

src/extension/build/assets/icon48.png

3.54 KB
Loading

0 commit comments

Comments
 (0)