Skip to content
Snippets Groups Projects
Panes.module.scss 1.62 KiB
Newer Older
insert's avatar
insert committed
.overview {
    .row {
        gap: 20px;
        display: flex;

        .name {
            flex-grow: 1;

            input {
                width: 100%;
            }
        }
    }
}

.invites {
    gap: 8px;
    display: flex;
    flex-direction: column;

nizune's avatar
nizune committed
    .subtitle {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
        text-transform: uppercase;
        color: var(--secondary-foreground);
        font-weight: 700;
    }

insert's avatar
insert committed
    .invite {
        gap: 8px;
nizune's avatar
nizune committed
        padding: 10px;
insert's avatar
insert committed
        display: flex;
        align-items: center;
        flex-direction: row;
        background: var(--secondary-background);

        code, span {
            flex: 1;
        }

        code {
            font-size: 1.4em;
            user-select: all;
        }

        span {
            gap: 8px;
            display: flex;
            color: var(--secondary-foreground);
        }

        &[data-deleting="true"] {
            opacity: 0.5;
        }
    }
}

.members {

    .subtitle {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
        text-transform: uppercase;
        color: var(--secondary-foreground);
        font-weight: 700;
    }
    
    .member {
        gap: 8px;
        padding: 10px;
        display: flex;
        align-items: center;
        flex-direction: row;
        background: var(--secondary-background);
    }
}

.roles {
    .overview {
        height: 85vh; //TOFIX change later
        display: flex;
        .list {
            overflow-y: scroll;
        }

        .permissions {
            overflow-y: scroll;
        }
    }