Fix Browse button layout Round 2

**Problem**

Browse button in Custom Object upload dialog displays weirdly
in portrait mode on iOS. It unexpectedly covers almost the entire
URL area in portrait mode.

We applied a change to fix but it didn't work.

**Changes**

* Remove flax stuffs and width 60px from browse style
* Add justify-content: end to IconButton style
This commit is contained in:
Takahiro 2023-11-08 16:56:47 -08:00
Родитель 93d253731e
Коммит 8dde5a7c6e
2 изменённых файлов: 2 добавлений и 5 удалений

Просмотреть файл

@ -9,6 +9,7 @@
font-size: theme.$font-size-xs; font-size: theme.$font-size-xs;
font-weight: theme.$font-weight-bold; font-weight: theme.$font-weight-bold;
cursor: pointer; cursor: pointer;
justify-content: end;
svg { svg {
color: theme.$text1-color; color: theme.$text1-color;

Просмотреть файл

@ -12,12 +12,8 @@
color: white; color: white;
background-color: black; background-color: black;
height: 100%; height: 100%;
display: flex;
flex: 1;
align-items: center;
justify-content: center;
margin: 0; margin: 0;
width: 60px; padding: 10px;
} }
:local(.container) { :local(.container) {