12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- .sidebar-container {
- height: 100px;
- width: 100vw;
- margin: 0;
- flex: 1 1 0;
- display: flex;
- align-items: flex-end;
- pointer-events: none;
- position: fixed;
- left: 0;
- bottom: 0;
- }
- li {
- text-decoration: none;
- list-style: none;
- }
- .mobile-sidebar {
- margin: 0;
- pointer-events: all;
- width: 100vw;
- height: 100px;
- padding: 0;
- justify-content: space-between;
- background-color: #303030;
- color: white;
- display: flex;
- flex-direction: row;
- gap: 10px;
- z-index: 3;
- }
- .mobile-sidebar li button {
- display: flex;
- flex-direction: column;
- align-items: center;
- border: none;
- padding: 10px 10px;
- background: none;
- color: rgb(255, 0, 149);
- font-family: "Knewave", cursive;
- font-size: 20px;
- }
- .sidebar li button:hover {
- color: black;
- cursor: pointer;
- }
|