mirror of
https://github.com/penpot/penpot.git
synced 2025-12-11 22:14:05 +01:00
Merge remote-tracking branch 'origin/staging' into develop
Some checks failed
_DEVELOP / build-bundle (push) Has been cancelled
_DEVELOP / build-docker (push) Has been cancelled
_STAGING / build-bundle (push) Has been cancelled
_STAGING / build-docker (push) Has been cancelled
Commit Message Check / Check Commit Message (push) Has been cancelled
CI / Linter (push) Has been cancelled
CI / Common Tests (push) Has been cancelled
CI / Frontend Tests (push) Has been cancelled
CI / Render WASM Tests (push) Has been cancelled
CI / Backend Tests (push) Has been cancelled
CI / Library Tests (push) Has been cancelled
CI / Build Integration Bundle (push) Has been cancelled
CI / Integration Tests 1/4 (push) Has been cancelled
CI / Integration Tests 2/4 (push) Has been cancelled
CI / Integration Tests 3/4 (push) Has been cancelled
CI / Integration Tests 4/4 (push) Has been cancelled
Some checks failed
_DEVELOP / build-bundle (push) Has been cancelled
_DEVELOP / build-docker (push) Has been cancelled
_STAGING / build-bundle (push) Has been cancelled
_STAGING / build-docker (push) Has been cancelled
Commit Message Check / Check Commit Message (push) Has been cancelled
CI / Linter (push) Has been cancelled
CI / Common Tests (push) Has been cancelled
CI / Frontend Tests (push) Has been cancelled
CI / Render WASM Tests (push) Has been cancelled
CI / Backend Tests (push) Has been cancelled
CI / Library Tests (push) Has been cancelled
CI / Build Integration Bundle (push) Has been cancelled
CI / Integration Tests 1/4 (push) Has been cancelled
CI / Integration Tests 2/4 (push) Has been cancelled
CI / Integration Tests 3/4 (push) Has been cancelled
CI / Integration Tests 4/4 (push) Has been cancelled
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -80,3 +80,4 @@ node_modules
|
|||||||
/playwright/.cache/
|
/playwright/.cache/
|
||||||
/render-wasm/target/
|
/render-wasm/target/
|
||||||
/**/.yarn/*
|
/**/.yarn/*
|
||||||
|
/.pnpm-store
|
||||||
|
|||||||
@@ -18,4 +18,15 @@ cp ../.yarnrc.yml target/;
|
|||||||
cp yarn.lock target/;
|
cp yarn.lock target/;
|
||||||
cp package.json target/;
|
cp package.json target/;
|
||||||
|
|
||||||
|
cat <<EOF | tee target/setup
|
||||||
|
#/usr/bin/env bash
|
||||||
|
set -e;
|
||||||
|
corepack enable;
|
||||||
|
corepack install;
|
||||||
|
yarn install
|
||||||
|
yarn run playwright install chromium;
|
||||||
|
EOF
|
||||||
|
|
||||||
|
chmod +x target/setup;
|
||||||
|
|
||||||
sed -i -re "s/\%version\%/$CURRENT_VERSION/g" ./target/app.js;
|
sed -i -re "s/\%version\%/$CURRENT_VERSION/g" ./target/app.js;
|
||||||
|
|||||||
@@ -14,7 +14,6 @@
|
|||||||
padding-bottom: deprecated.$s-16;
|
padding-bottom: deprecated.$s-16;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
scrollbar-gutter: stable;
|
|
||||||
padding-inline: var(--sp-m);
|
padding-inline: var(--sp-m);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -30,8 +30,8 @@
|
|||||||
|
|
||||||
.tool-windows {
|
.tool-windows {
|
||||||
block-size: 100%;
|
block-size: 100%;
|
||||||
display: flex;
|
display: grid;
|
||||||
flex-direction: column;
|
grid-template-rows: auto 1fr;
|
||||||
gap: var(--sp-s);
|
gap: var(--sp-s);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -150,7 +150,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.inspect-content {
|
.inspect-content {
|
||||||
flex: 1;
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -158,6 +157,5 @@
|
|||||||
--tabs-nav-padding-inline-start: 0;
|
--tabs-nav-padding-inline-start: 0;
|
||||||
--tabs-nav-padding-inline-end: var(--sp-m);
|
--tabs-nav-padding-inline-end: var(--sp-m);
|
||||||
|
|
||||||
block-size: calc(100vh - px2rem(200)); // TODO: Fix this hardcoded value
|
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|||||||
11
frontend/src/app/main/ui/inspect/styles.scss
Normal file
11
frontend/src/app/main/ui/inspect/styles.scss
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
//
|
||||||
|
// Copyright (c) KALEIDOS INC
|
||||||
|
|
||||||
|
@use "ds/_utils.scss" as *;
|
||||||
|
|
||||||
|
.styles-tab {
|
||||||
|
block-size: calc(100vh - px2rem(200)); // TODO: Fix this hardcoded value
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user