|
@@ -53,6 +53,8 @@ aside.layout-sidebar-second{
|
|
|
}
|
|
|
.view-current-user-doc-profile{
|
|
|
padding: 0 2rem ;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
}
|
|
|
.profile--type--collaborateur{
|
|
|
.field--name-field-site{
|
|
@@ -72,7 +74,7 @@ aside.layout-sidebar-second{
|
|
|
|
|
|
> div:nth-child(1)::before{
|
|
|
content: url('../../dist/images/noun-file-6880430.svg');
|
|
|
- display: inline-block;
|
|
|
+ display: inline-flex;
|
|
|
width: 70px;
|
|
|
height: auto;
|
|
|
// align-content: center;
|
|
@@ -88,21 +90,38 @@ aside.layout-sidebar-second{
|
|
|
}
|
|
|
}
|
|
|
footer{
|
|
|
- @extend %buttonwithborder;
|
|
|
+ text-transform: uppercase;
|
|
|
+
|
|
|
+ border: solid black 1px;
|
|
|
+ background-color: $white-button;
|
|
|
+ font-size: 0.9rem;
|
|
|
width: fit-content;
|
|
|
- padding: 0.3rem;
|
|
|
font-weight: 400;
|
|
|
+ @media (max-width:891px) {
|
|
|
+ font-size: 1rem;
|
|
|
+ }
|
|
|
+ p{margin: 0;
|
|
|
+ padding: 0.3rem;}
|
|
|
:hover{
|
|
|
background-color: $yellow-puca;
|
|
|
}
|
|
|
- }
|
|
|
+ }
|
|
|
+ .view-footer{
|
|
|
+ padding-top: 0;
|
|
|
+ align-self: center;
|
|
|
+ }
|
|
|
|
|
|
|
|
|
}
|
|
|
aside.layout-sidebar-second.open {
|
|
|
transform: translateX(90%); /* Par défaut ouvert */
|
|
|
transition: transform 0.35s;
|
|
|
+ &:hover{
|
|
|
+ background-color: $yellow-puca;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
aside.layout-sidebar-second {
|
|
|
transform: translateX(0%);
|
|
|
+
|
|
|
}
|