Added basic option to specify alternative IA CDN servers within the settings panel.

This commit is contained in:
rainbow napkin 2025-09-06 09:08:07 -04:00
parent 08d2bf8bc9
commit e9c474eaf0
6 changed files with 98 additions and 5 deletions

View file

@ -17,6 +17,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.*/
display: flex;
flex-direction: column;
gap: 1em;
align-items: center;
}
#settings-panel h2{
@ -24,10 +25,22 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.*/
margin: 1em 0 0;
}
#settings-panel h4{
text-align: center;
margin: 0;
}
.settings-panel-setting{
display: flex;
flex-direction: row;
text-wrap: nowrap;
height: 1em;
align-items: center;
max-width: 30em;
width: 100%
}
.settings-panel-setting :is(input, select){
width: 1px;
flex: 1 1 auto;
}