Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

embed tweaks: more tweaks for embed wrapping, reformat #268

Merged
merged 1 commit into from
Nov 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading