1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .MainM {
- :global {
- .mainBox {
- width: 100%;
- height: calc(100% - 90px);
- }
- .mainFllo {
- width: 100%;
- height: 90px;
- background-color: #fff;
- display: flex;
- align-items: center;
- .mainFlloRow {
- width: 20%;
- text-align: center;
- &>div {
- margin: 0 auto;
- width: 40px;
- height: 40px;
- background-size: 100% 100%;
- }
- &>p {
- font-size: 14px;
- color: #47392C;
- }
- }
- .mainFlloRowAc {
- pointer-events: none;
- &>p {
- color: #47392C;
- font-weight: 700;
- }
- }
- }
- }
- }
|