Merge remote-tracking branch 'hub/main' into feature/sse-connect

This commit is contained in:
Untone 2023-11-17 19:28:04 +03:00
commit 44c693660b
4 changed files with 14 additions and 6 deletions

View File

@ -1,4 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.1512 4.42386L4.42326 17.1518L6.84763 19.5761L19.5756 6.84822L17.1512 4.42386Z" fill="#393840"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.5755 17.1518L6.84763 4.42386L4.42326 6.84822L17.1512 19.5761L19.5755 17.1518Z" fill="#393840"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.0001 10.2321L18.1873 4.04492L19.9551 5.81269L13.7679 11.9999L19.9551 18.1871L18.1873 19.9548L12.0001 13.7676L5.81293 19.9548L4.04517 18.1871L10.2324 11.9999L4.04517 5.81269L5.81293 4.04492L12.0001 10.2321Z" fill="#141414"/>
</svg>

Before

Width:  |  Height:  |  Size: 401 B

After

Width:  |  Height:  |  Size: 380 B

View File

@ -1,3 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M22 6.73787L19.2621 4L9.78964 13.4725L5.73787 9.42071L3 12.1586L9.78964 18.9482L22 6.73787Z" fill="#393840"/>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
<path fill-rule="evenodd" clip-rule="evenodd" d="M22 6.73787L19.2621 4L9.78964 13.4725L5.73787 9.42071L3 12.1586L9.78964 18.9482L22 6.73787Z" fill="#141414"/>
</svg>

Before

Width:  |  Height:  |  Size: 262 B

After

Width:  |  Height:  |  Size: 264 B

View File

@ -1,11 +1,12 @@
.InlineForm {
border: 1px solid;
position: relative;
width: 100%;
.form {
display: flex;
flex-flow: row nowrap;
padding: 6px 11px;
padding: 8px 11px;
width: 100%;
input {
@ -24,6 +25,10 @@
outline: none;
}
}
button {
margin-left: 8px;
}
}
.linkError {

View File

@ -18,13 +18,17 @@ $transition-duration: 200ms;
.panel {
position: relative;
background-color: var(--background-color);
width: 50%;
width: 100%;
height: 100%;
transform: translateX(100%);
transition: transform $transition-duration;
display: flex;
flex-direction: column;
@include media-breakpoint-up(md) {
width: 50%;
}
.title {
@include font-size(2rem);