From 7afc976c43b452136b5770d41729f2f4391f56d8 Mon Sep 17 00:00:00 2001 From: inbalvasserman <55684552+inbalvasserman@users.noreply.github.com> Date: Sun, 24 Nov 2024 17:58:55 +0200 Subject: [PATCH] fix(SUP-45650): [Oracle] Safari playlist vertical embed bottom side squeezed (#70) issue: on safari browser playlist when choose side panel to be on the bottom, the list is squeezed and not the same as in chrome solution: change max width css as safari support fit-content different from chrome solved [SUP-45650](https://kaltura.atlassian.net/browse/SUP-45650) [SUP-45650]: https://kaltura.atlassian.net/browse/SUP-45650?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ --- src/components/playlist-item/playlist-item.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/playlist-item/playlist-item.scss b/src/components/playlist-item/playlist-item.scss index 1cbf6bf..8a1031b 100644 --- a/src/components/playlist-item/playlist-item.scss +++ b/src/components/playlist-item/playlist-item.scss @@ -51,7 +51,7 @@ $playlist-item-metadata-height: 46px; background-size: cover; max-height: 100%; img { - max-width: fit-content; // override style from kms + max-width: initial; // override style from kms } } .playlistItemMetadata {