mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-12 12:04:16 +00:00
89 lines
1.3 KiB
Plaintext
89 lines
1.3 KiB
Plaintext
.developer-settings {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
gap: 20px;
|
|
}
|
|
|
|
.api_keys {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
background-color: var(--background-color-accent);
|
|
|
|
padding: 10px;
|
|
|
|
border-radius: 12px;
|
|
|
|
.api_keys_header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.api_keys_list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
gap: 10px;
|
|
}
|
|
}
|
|
|
|
.server-key-item {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
background-color: var(--background-color-primary);
|
|
border-radius: 12px;
|
|
|
|
padding: 10px;
|
|
|
|
p {
|
|
margin: 0;
|
|
}
|
|
|
|
.server-key-item-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
gap: 5px;
|
|
}
|
|
|
|
.server-key-item-actions {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
gap: 5px;
|
|
}
|
|
}
|
|
|
|
.links {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
gap: 5px;
|
|
}
|
|
|
|
.server-key-creator {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
gap: 10px;
|
|
|
|
.server-key-creator-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
gap: 5px;
|
|
|
|
.selectable-text {
|
|
font-family: "DM Mono", monospace;
|
|
font-size: 0.7rem;
|
|
}
|
|
}
|
|
} |