[Main] style 추가

This commit is contained in:
jangheon Pyo
2024-05-22 17:43:52 +09:00
parent 5b856963f4
commit 91935a977b
2 changed files with 18 additions and 14 deletions

View File

@@ -315,7 +315,7 @@ export default function MainView() {
}, [dispatch, alertItems, popupTimer]);
return (
<>
<div className={css.mainViewWrap}>
<PreloadImage
preloadImages={preloadImages}
onLoadComplete={onPreImageLoadComplete}
@@ -360,6 +360,6 @@ export default function MainView() {
title={$L("Watch Now!")}
text={alertItems[0]?.showNm}
/>
</>
</div>
);
}

View File

@@ -1,16 +1,20 @@
@import "../../style/CommonStyle.module.less";
@import "../../style/utils.module.less";
.container {
// opacity: 1;
// &.transparent {
// opacity: 0;
// }
.mainlayout {
display: flex;
flex-direction: row-reverse;
justify-content: flex-end;
width: 100vw;
height: 100vh;
background-color: #fff;
.mainViewWrap {
height: 100vh;
background-color: #fff;
.container {
// opacity: 1;
// &.transparent {
// opacity: 0;
// }
.mainlayout {
display: flex;
flex-direction: row-reverse;
justify-content: flex-end;
width: 100vw;
height: 100vh;
}
}
}