- change refresh icon & apply refreshing logic - apply validation in action btn in menu - preserve on customer info state upon refresh
28 lines
400 B
CSS
28 lines
400 B
CSS
.languageSwitch {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: end;
|
|
padding: 0 16px;
|
|
gap: 8px;
|
|
position: absolute;
|
|
top: 50px;
|
|
z-index: 1000;
|
|
right: 0;
|
|
}
|
|
|
|
:global(.ant-app-rtl) .languageSwitch {
|
|
left: 0;
|
|
right: auto;
|
|
}
|
|
|
|
.refreshIcon {
|
|
cursor: pointer;
|
|
position: relative;
|
|
top: 2px;
|
|
margin-right: 3px;
|
|
}
|
|
|
|
:global(.ant-app-rtl) .refreshIcon {
|
|
margin-left: 3px;
|
|
}
|