Files
web-menu-react-version-/src/components/LanguageSwitch/LanguageSwitch.module.css
Mohammed Al-yaseen f294138d30 fixes
- change refresh icon & apply refreshing logic
- apply validation in action btn in menu
- preserve on customer info state upon refresh
2026-01-04 07:00:56 +03:00

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;
}