mirror of
https://github.com/nathonius/obsidian-github-link.git
synced 2026-07-22 09:20:25 +00:00
44 lines
650 B
CSS
44 lines
650 B
CSS
.gh-auth-modal {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.gh-auth-code-section {
|
|
display: flex;
|
|
gap: 10px;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.auth-code {
|
|
font-size: 3em;
|
|
}
|
|
|
|
.gh-link-inline {
|
|
display: flex;
|
|
background-color: green;
|
|
border-radius: 4px;
|
|
text-decoration: none;
|
|
color: inherit;
|
|
align-items: center;
|
|
}
|
|
|
|
.gh-link-inline-icon {
|
|
background-color: orange;
|
|
border-radius: 4px;
|
|
display: flex;
|
|
padding: 2px;
|
|
}
|
|
|
|
.gh-link-inline-repo {
|
|
background-color: blue;
|
|
padding: 0 4px;
|
|
}
|
|
|
|
.gh-link-inline-pr-title {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
text-wrap: nowrap;
|
|
padding: 0 4px;
|
|
}
|