2018-11-13 18:19:12 +01:00
|
|
|
.confirm-page-container-navigation {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
font: inherit;
|
|
|
|
padding: 4px 10px 4px 10px;
|
2022-03-16 15:49:25 +01:00
|
|
|
border-bottom: 1px solid var(--color-border-muted);
|
2018-11-13 18:19:12 +01:00
|
|
|
flex: 0 0 auto;
|
|
|
|
|
|
|
|
&__container {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__arrow {
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
2022-03-23 16:48:48 +01:00
|
|
|
padding-left: 4px;
|
|
|
|
padding-right: 4px;
|
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
color: var(--color-icon-default);
|
2018-11-13 18:19:12 +01:00
|
|
|
}
|
2020-07-15 15:13:40 +02:00
|
|
|
|
2018-11-13 18:19:12 +01:00
|
|
|
&__arrow:hover {
|
|
|
|
-webkit-transform: scale(1.1);
|
2020-07-15 15:13:40 +02:00
|
|
|
-moz-transform: scale(1.1);
|
|
|
|
-o-transform: scale(1.1);
|
|
|
|
transform: scale(1.1);
|
2018-11-13 18:19:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&__arrow:active {
|
|
|
|
-webkit-transform: scale(0.95);
|
2020-07-15 15:13:40 +02:00
|
|
|
-moz-transform: scale(0.95);
|
|
|
|
-o-transform: scale(0.95);
|
|
|
|
transform: scale(0.95);
|
2018-11-13 18:19:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&__textcontainer {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__navtext {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H9;
|
|
|
|
|
2018-11-13 18:19:12 +01:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__longtext {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H9;
|
|
|
|
|
2022-03-16 15:49:25 +01:00
|
|
|
color: var(--color-text-alternative);
|
2018-11-13 18:19:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&__imageflip {
|
|
|
|
-webkit-transform: scaleX(-1);
|
2020-07-15 15:13:40 +02:00
|
|
|
-moz-transform: scaleX(-1);
|
|
|
|
-o-transform: scaleX(-1);
|
|
|
|
transform: scaleX(-1);
|
2018-11-13 18:19:12 +01:00
|
|
|
}
|
2020-07-15 15:13:40 +02:00
|
|
|
}
|