mirror of
https://github.com/PlayEdu/frontend.git
synced 2025-06-15 14:47:06 +08:00
视频播放返回按钮样式优化
This commit is contained in:
parent
49061afdc8
commit
e1ce7d8b47
@ -93,6 +93,10 @@ h1 {
|
|||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ml-14 {
|
||||||
|
margin-left: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
.ml-15 {
|
.ml-15 {
|
||||||
margin-left: 15px;
|
margin-left: 15px;
|
||||||
}
|
}
|
||||||
|
@ -30,12 +30,14 @@
|
|||||||
height: 40px;
|
height: 40px;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding-left: 30px;
|
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
&:hover {
|
||||||
|
opacity: 0.8;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import React, { useState, useEffect } from "react";
|
import React, { useState, useEffect } from "react";
|
||||||
import styles from "./video.module.scss";
|
import styles from "./video.module.scss";
|
||||||
import { course } from "../../../api/index";
|
import { course } from "../../../api/index";
|
||||||
|
import { ArrowLeftOutlined } from "@ant-design/icons";
|
||||||
|
|
||||||
declare const window: any;
|
declare const window: any;
|
||||||
|
|
||||||
@ -85,7 +86,8 @@ export const VideoModel: React.FC<PropInterface> = ({
|
|||||||
onCancel();
|
onCancel();
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
返回
|
<ArrowLeftOutlined />
|
||||||
|
<span className="ml-14">返回</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user