Skip to content

Commit

Permalink
embed tweaks: more tweaks for embed wrapping, reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
ikreymer committed Nov 2, 2024
1 parent e463296 commit 5bbd0e5
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 14 deletions.
25 changes: 13 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,21 +32,21 @@ The Chromium extension and Electron app are built from the same source code for
To build the extension or Electron app locally for development, do the following:

1. Clone this repo:
```sh
git clone https://github.com/webrecorder/archiveweb.page.git
```
```sh
git clone https://github.com/webrecorder/archiveweb.page.git
```
2. Change the working directory:
```sh
cd archiveweb.page
```
```sh
cd archiveweb.page
```
3. Install dependencies:
```sh
yarn install
```
```sh
yarn install
```
4. Make development build:
```sh
yarn build-dev
```
```sh
yarn build-dev
```

The development build can now be used to develop the extension or Electron app.

Expand Down Expand Up @@ -79,6 +79,7 @@ After making changes, the extension still needs to be reloaded in the browser.
### Developing the Electron app

To start the Electron app using development build:

```sh
yarn run start-electron
```
Expand Down
8 changes: 6 additions & 2 deletions src/ui/coll.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,16 @@ class WrRecColl extends Item {
@media screen and (max-width: 768px) {
div.has-addons {
flex-wrap: wrap;
justify-content: flex-end;
}
div.has-addons form {
display: contents;
}
.rec-controls {
width: 100%;
justify-content: space-between !important;
}
}
${Item.compStyles}
Expand Down Expand Up @@ -162,7 +166,7 @@ class WrRecColl extends Item {
}

return html`
<div class="is-flex is-flex-direction-row">
<div class="is-flex is-flex-direction-row rec-controls">
<a
href="#"
role="button"
Expand Down

0 comments on commit 5bbd0e5

Please sign in to comment.