|
- .popup-container {
- background-color: white;
- border-radius: 8px;
- box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
- padding: 10px;
- position: relative;
- }
-
- .popup-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 10px;
- }
-
- .popup-title {
- color: #F33152;
- font-weight: 500;
- }
-
- .close-button {
- cursor: pointer;
- color: #eeeeee;
- &:hover{
- color: #000000;
- }
- }
-
|