mirror of
https://github.com/binaris00/Theme-Controller.git
synced 2026-07-22 11:30:25 +00:00
44 lines
706 B
CSS
44 lines
706 B
CSS
/*
|
|
|
|
This CSS file will be included with your plugin, and
|
|
available in the app when your plugin is enabled.
|
|
|
|
If your plugin does not need CSS, delete this file.
|
|
|
|
*/
|
|
/* Match list */
|
|
.thcontrol-theme-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
|
|
.thcontrol-li-list {
|
|
min-height: 40px;
|
|
border-bottom: 0.5px solid var(--text-faint);
|
|
}
|
|
|
|
.thcontrol-theme-info {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 5px;
|
|
border-radius: 4px;
|
|
font-style: italic;
|
|
svg {
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
|
|
.thcontrol-info-left {
|
|
flex: 1;
|
|
text-align: left;
|
|
padding: 0 10px;
|
|
}
|
|
|
|
.thcontrol-info-center {
|
|
flex: 1;
|
|
text-align: center;
|
|
}
|
|
|