Round Video: Make larger (#1507)

This commit is contained in:
Alexander Zinchuk 2021-10-22 02:24:28 +03:00
parent c22fbe4de1
commit edbfd22759
2 changed files with 5 additions and 5 deletions

View File

@ -9,7 +9,7 @@ import { getPhotoInlineDimensions, getVideoDimensions } from '../../../modules/h
export const MEDIA_VIEWER_MEDIA_QUERY = '(max-height: 640px)';
export const REM = parseInt(getComputedStyle(document.documentElement).fontSize, 10);
export const ROUND_VIDEO_DIMENSIONS = 200;
export const ROUND_VIDEO_DIMENSIONS = 240;
export const AVATAR_FULL_DIMENSIONS = { width: 640, height: 640 };
export const LIKE_STICKER_ID = '1258816259753933';

View File

@ -1,12 +1,12 @@
.RoundVideo {
position: relative;
width: 200px;
height: 200px;
width: 15rem;
height: 15rem;
cursor: pointer;
.thumbnail-wrapper {
width: 200px;
height: 200px;
width: 15rem;
height: 15rem;
border-radius: 50%;
overflow: hidden;
}