0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-08 16:00:19 -05:00

Merge remote-tracking branch 'origin/main' into staging

This commit is contained in:
Alejandro Alonso 2022-10-04 15:59:21 +02:00
commit 65da328b25
3 changed files with 39 additions and 33 deletions

View file

@ -48,6 +48,8 @@
- To @andrewzhurov for many code contributions on this release. - To @andrewzhurov for many code contributions on this release.
- UI improvements in Project section (by @Waishnav) [#2285](https://github.com/penpot/penpot/pull/2285) - UI improvements in Project section (by @Waishnav) [#2285](https://github.com/penpot/penpot/pull/2285)
## 1.15.5-beta
## 1.15.4-beta ## 1.15.4-beta
### :bug: Bugs fixed ### :bug: Bugs fixed
@ -77,6 +79,7 @@
- Fix PDF exportation order [Taiga #4216](https://tree.taiga.io/project/penpot/issue/4216) - Fix PDF exportation order [Taiga #4216](https://tree.taiga.io/project/penpot/issue/4216)
- Fix some typos [Taiga #4215](https://tree.taiga.io/project/penpot/issue/4215) - Fix some typos [Taiga #4215](https://tree.taiga.io/project/penpot/issue/4215)
- Fix "no boards" message in viewer [Taiga #4243](https://tree.taiga.io/project/penpot/issue/4243) - Fix "no boards" message in viewer [Taiga #4243](https://tree.taiga.io/project/penpot/issue/4243)
- Fix view mode login size [Taiga #4210](https://tree.taiga.io/project/penpot/issue/4210)
## 1.15.3-beta ## 1.15.3-beta

View file

@ -18,7 +18,6 @@
.auth-sidebar { .auth-sidebar {
grid-column: 1 / span 1; grid-column: 1 / span 1;
height: 100vh; height: 100vh;
display: flex; display: flex;
padding-top: 7vh; padding-top: 7vh;
flex-direction: column; flex-direction: column;
@ -48,14 +47,31 @@
} }
.auth-content { .auth-content {
align-items: center; grid-column: 2 / span 1;
background-color: $color-white; background-color: $color-white;
display: flex; display: flex;
grid-column: 2 / span 1; align-items: center;
height: 100vh;
justify-content: center; justify-content: center;
position: relative; position: relative;
min-height: 48rem;
.login-form {
margin-bottom: 30px;
.form-container {
width: 412px;
flex-direction: column;
.auth-buttons {
margin: $size-6 0 $size-4 0;
display: flex;
justify-content: center;
column-gap: 17px;
}
form {
margin: 2rem 0 0.5rem 0;
}
}
}
input { input {
margin-bottom: 0px; margin-bottom: 0px;
@ -71,21 +87,6 @@
} }
} }
.form-container {
width: 412px;
.auth-buttons {
margin: $size-6 0 $size-4 0;
display: flex;
justify-content: center;
column-gap: 17px;
}
form {
margin: 2rem 0 0.5rem 0;
}
}
.btn-large { .btn-large {
flex-grow: 1; flex-grow: 1;
font-size: 14px; font-size: 14px;
@ -192,14 +193,14 @@
} }
} }
} }
}
.terms-login { .terms-login {
bottom: $size-5; bottom: $size-5;
font-size: $fs14; font-size: $fs14;
position: absolute; position: absolute;
span { span {
margin: 0 $size-2; margin: 0 $size-2;
}
} }
} }

View file

@ -1855,7 +1855,10 @@
display: flex; display: flex;
font-family: "worksans", sans-serif; font-family: "worksans", sans-serif;
width: 472px; width: 472px;
height: auto; height: 100%;
max-height: 700px;
position: relative;
overflow: auto;
position: relative; position: relative;
.title { .title {
@ -1887,11 +1890,10 @@
&.auth-content { &.auth-content {
align-items: initial; align-items: initial;
height: auto; height: auto;
} .links {
margin: 7px 0 0 0;
.links { text-align: left;
margin: 7px 0 0 0; }
text-align: left;
} }
} }