1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- .embed-meeting {
- &-dialog {
- display: flex;
- flex-direction: column;
-
- &-header {
- display: flex;
- justify-content: space-between;
- margin: 16px 16px 24px;
- width: calc(100% - 32px);
- color: #fff;
- font-weight: 600;
- font-size: 24px;
- line-height: 32px;
-
- & > div > svg {
- cursor: pointer;
- fill: #A4B8D1;
- }
- }
- }
-
- &-copy {
- color: white;
- font-size: 15px;
- margin-left: auto;
- margin-top: 16px;
- width: auto;
- }
-
- &-code {
- background: transparent;
- border: 1px solid #A4B8D1;
- color: white;
- font-size: 15px;
- height: 165px;
- line-height: 24px;
- padding: 8px;
- width: 100%;
- resize: vertical;
- }
-
- &-trigger {
- display: flex;
- align-items: center;
- padding: 8px 8px 8px 16px;
- margin-top: 24px;
- width: calc(100% - 24px);
- height: 24px;
- background: #2A3A4B;
- border: 1px solid #5E6D7A;
- border-radius: 4px;
- cursor: pointer;
-
- .jitsi-icon {
- margin-right: 20px;
- }
- }
- }
|