doleancer added arrow btn to go to previous and next doleance #2303

This commit is contained in:
2023-09-29 14:47:29 +02:00
parent 9b357e6d6e
commit 55cb0698bd
5 changed files with 80 additions and 66 deletions

View File

@@ -123,14 +123,14 @@ body{
}
}
}
$cartouch_width : 450px;
#content{
display: flex;
gap: 0.5rem;
@mixin main-cartouche{
background-color: rgba(255, 255, 255, 0.9);
box-sizing: border-box;
width:450px;
width:$cartouch_width;
height: 100%;
padding: 1rem 1rem 1rem;
overflow-y: auto;
@@ -493,7 +493,6 @@ body{
list-style: none;
}
}
section.search{
@@ -578,6 +577,22 @@ body{
text-decoration: underline;
}
}
nav.doleance-switch{
div{
position: fixed;
top: calc(100vh * 0.49);
cursor: pointer;
&.prev{
left: 1rem;
}
&.next{
right:calc($cartouch_width + 2rem);
}
}
}
}
#recit-player{