1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-28 07:56:37 +01:00

Fixes rounded corner

This commit is contained in:
Amir Raminfar
2019-05-21 20:34:25 -07:00
parent b7bfe1cb7a
commit de987026b0
3 changed files with 6 additions and 6 deletions

View File

@@ -38,8 +38,8 @@ h1.title {
#video {
display: flex;
flex-direction: column;
box-shadow: 0px 6px 14px 5px rgba(0, 0, 0, 0.45);
border-radius: 5px 5px 0px 0px;
box-shadow: 0 4px 12px 3px rgba(0, 0, 0, 0.45);
border-radius: 4px;
overflow: hidden;
border: 1px solid #777;

File diff suppressed because one or more lines are too long

View File

@@ -5213,9 +5213,9 @@ h1.title {
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-shadow: 0 6px 14px 5px rgba(0, 0, 0, 0.45);
box-shadow: 0 6px 14px 5px rgba(0, 0, 0, 0.45);
border-radius: 5px 5px 0 0;
-webkit-box-shadow: 0 4px 12px 3px rgba(0, 0, 0, 0.45);
box-shadow: 0 4px 12px 3px rgba(0, 0, 0, 0.45);
border-radius: 4px;
overflow: hidden;
border: 1px solid #777;
}