|
@@ -4,7 +4,7 @@
|
|
height: 100%;
|
|
height: 100%;
|
|
left: 0;
|
|
left: 0;
|
|
top: 0;
|
|
top: 0;
|
|
-
|
|
|
|
|
|
+ overflow: hidden;
|
|
iframe {
|
|
iframe {
|
|
width: 100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
height: 100%;
|
|
@@ -20,7 +20,8 @@
|
|
height: 100%;
|
|
height: 100%;
|
|
left: 0;
|
|
left: 0;
|
|
top: 0;
|
|
top: 0;
|
|
- overflow-y: auto;
|
|
|
|
|
|
+ // overflow-y: auto;
|
|
|
|
+ overflow: hidden;
|
|
transition: transform .3s linear;
|
|
transition: transform .3s linear;
|
|
|
|
|
|
&::-webkit-scrollbar {
|
|
&::-webkit-scrollbar {
|
|
@@ -30,18 +31,18 @@
|
|
|
|
|
|
.ctrl {
|
|
.ctrl {
|
|
position: absolute;
|
|
position: absolute;
|
|
- right: 6px;
|
|
|
|
|
|
+ right: 0px;
|
|
top: 50%;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
transform: translateY(-50%);
|
|
background: var(--bgColor);
|
|
background: var(--bgColor);
|
|
- width: 14px;
|
|
|
|
|
|
+ width: 20px;
|
|
height: 40px;
|
|
height: 40px;
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
|
|
|
|
img {
|
|
img {
|
|
position: absolute;
|
|
position: absolute;
|
|
- width: 10px;
|
|
|
|
- height: 10px;
|
|
|
|
|
|
+ width: 12px;
|
|
|
|
+ height: 12px;
|
|
left: 50%;
|
|
left: 50%;
|
|
top: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
transform: translate(-50%, -50%);
|
|
@@ -54,19 +55,19 @@
|
|
position: absolute;
|
|
position: absolute;
|
|
width: 0;
|
|
width: 0;
|
|
height: 0;
|
|
height: 0;
|
|
- border: 10px solid transparent;
|
|
|
|
|
|
+ border: 16px solid transparent;
|
|
}
|
|
}
|
|
|
|
|
|
&::before {
|
|
&::before {
|
|
- left: -10px;
|
|
|
|
- top: -10px;
|
|
|
|
|
|
+ left: -16px;
|
|
|
|
+ top: -16px;
|
|
transform: rotate(45deg);
|
|
transform: rotate(45deg);
|
|
border-top-color: var(--bgColor);
|
|
border-top-color: var(--bgColor);
|
|
}
|
|
}
|
|
|
|
|
|
&::after {
|
|
&::after {
|
|
- left: -10px;
|
|
|
|
- bottom: -10px;
|
|
|
|
|
|
+ left: -16px;
|
|
|
|
+ bottom: -16px;
|
|
transform: rotate(-45deg);
|
|
transform: rotate(-45deg);
|
|
border-bottom-color: var(--bgColor);
|
|
border-bottom-color: var(--bgColor);
|
|
}
|
|
}
|
|
@@ -93,16 +94,21 @@
|
|
position: absolute;
|
|
position: absolute;
|
|
left: 0;
|
|
left: 0;
|
|
top: 0;
|
|
top: 0;
|
|
- min-height: 100%;
|
|
|
|
|
|
+ // min-height: 100%;
|
|
|
|
+ height: 100%;
|
|
padding: 20px;
|
|
padding: 20px;
|
|
width: calc(100% - 20px);
|
|
width: calc(100% - 20px);
|
|
background: var(--bgColor);
|
|
background: var(--bgColor);
|
|
transition: transform .3s linear;
|
|
transition: transform .3s linear;
|
|
box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+ overflow-y: auto;
|
|
|
|
+ &::-webkit-scrollbar-thumb{
|
|
|
|
+ background: (rgba(255,255,255,0.2));
|
|
|
|
+ }
|
|
|
|
+ &::-webkit-scrollbar{
|
|
|
|
+ width:4px;
|
|
|
|
+ }
|
|
h2 {
|
|
h2 {
|
|
font-size: 20px;
|
|
font-size: 20px;
|
|
font-weight: 400;
|
|
font-weight: 400;
|