1234567891011121314151617181920212223242526272829303132 |
- @use "./colors.scss" as *;
- .simple-link {
- font-size: 20px;
- line-height: 30px;
- color: $primary-color;
- text-decoration: none;
- }
- .simple-carousel2-left-right {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- width: 100px;
- margin-top: 40px;
- div {
- width: 30px;
- height: 30px;
- font-size: 25px;
- text-align: center;
- line-height: 30px;
- cursor: pointer;
- -webkit-user-select: none;
- user-select: none;
- color: $primary-color;
- }
- }
- .left-right-grid {
-
- }
|