| 12345678910111213141516171819202122232425262728 |
- ::-webkit-scrollbar {
- width: 0;
- height: 0;
- color: transparent;
- display: none;
- }
- .FlexColumn {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .FlexRow {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- }
- .container {
- width:100%;
- color: #1e1e1e;
- justify-content: flex-start;
- font-weight: 700;
- background-color: #F2F2F2;
- }
|