fix: Move content into to frontend directory

Doing this BEFORE the merge prevents a lot of merge conflicts.

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2022-11-11 11:16:18 +01:00
parent 4e18ce38f3
commit 762a0a850e
No known key found for this signature in database
GPG key ID: B97799103358209B
1051 changed files with 0 additions and 35 deletions

View file

@ -0,0 +1,73 @@
/*
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
*
* SPDX-License-Identifier: AGPL-3.0-only
*/
.split-divider {
width: 15px;
background: white;
z-index: 1;
box-shadow: 3px 0 6px #e7e7e7;
display: flex;
align-items: center;
justify-content: center;
:global(body.dark) & {
box-shadow: 3px 0 6px #7b7b7b;
}
}
.grabber {
cursor: col-resize;
}
.middle {
width: 35px;
height: 35px;
z-index: 100000;
position: absolute;
border-radius: 90px;
border: solid 1px #d5d5d5;
overflow: hidden;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
transition: width 150ms ease-in-out, height 150ms ease-in-out, border-radius 50ms ease-in-out, transform 50ms ease-in-out;
transform: translateX(0);
&.shift-right {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
transform: translateX(8px);
}
&.shift-left {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
transform: translateX(-8px);
}
&:hover, &.open {
width: 135px;
height: 50px;
border-radius: 90px;
}
:global(.btn) {
border-radius: 90px;
}
.buttons {
height: 40px;
width: 3*40px;
position: absolute;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
}