File tree Expand file tree Collapse file tree 2 files changed +19
-14
lines changed Expand file tree Collapse file tree 2 files changed +19
-14
lines changed Original file line number Diff line number Diff line change @@ -32,21 +32,21 @@ The Chromium extension and Electron app are built from the same source code for
32
32
To build the extension or Electron app locally for development, do the following:
33
33
34
34
1 . Clone this repo:
35
- ``` sh
36
- git clone https://github.com/webrecorder/archiveweb.page.git
37
- ```
35
+ ``` sh
36
+ git clone https://github.com/webrecorder/archiveweb.page.git
37
+ ```
38
38
2 . Change the working directory:
39
- ` ` ` sh
40
- cd archiveweb.page
41
- ` ` `
39
+ ``` sh
40
+ cd archiveweb.page
41
+ ```
42
42
3 . Install dependencies:
43
- ` ` ` sh
44
- yarn install
45
- ` ` `
43
+ ``` sh
44
+ yarn install
45
+ ```
46
46
4 . Make development build:
47
- ` ` ` sh
48
- yarn build-dev
49
- ` ` `
47
+ ``` sh
48
+ yarn build-dev
49
+ ```
50
50
51
51
The development build can now be used to develop the extension or Electron app.
52
52
@@ -79,6 +79,7 @@ After making changes, the extension still needs to be reloaded in the browser.
79
79
### Developing the Electron app
80
80
81
81
To start the Electron app using development build:
82
+
82
83
``` sh
83
84
yarn run start-electron
84
85
```
Original file line number Diff line number Diff line change @@ -78,12 +78,16 @@ class WrRecColl extends Item {
78
78
@media screen and (max-width: 768px) {
79
79
div.has-addons {
80
80
flex-wrap: wrap;
81
- justify-content: flex-end;
82
81
}
83
82
84
83
div.has-addons form {
85
84
display: contents;
86
85
}
86
+
87
+ .rec-controls {
88
+ width: 100%;
89
+ justify-content: space-between !important;
90
+ }
87
91
}
88
92
89
93
${ Item . compStyles }
@@ -162,7 +166,7 @@ class WrRecColl extends Item {
162
166
}
163
167
164
168
return html `
165
- < div class ="is-flex is-flex-direction-row ">
169
+ < div class ="is-flex is-flex-direction-row rec-controls ">
166
170
< a
167
171
href ="# "
168
172
role ="button "
You can’t perform that action at this time.
0 commit comments