Compare commits

..

3 commits

Author SHA1 Message Date
Sam Gleske
3593e7b6f0
Merge 9b0ad60808 into 2fdafd34ca 2025-05-22 01:43:25 +00:00
Sam Gleske
9b0ad60808 White text is better 2025-05-21 21:43:18 -04:00
Sam Gleske
508eb2c280 Fix tagsinput styles for darkmode 2025-05-21 19:54:54 -04:00
3 changed files with 13 additions and 1 deletions

5
Makefile Normal file
View file

@ -0,0 +1,5 @@
.PHONY: serve build
serve: build
docker run --name wgui -v "$(PWD)/db:/app/db" -it --rm -p5000:5000 wgui -disable-login
build:
docker build -t wgui .

View file

@ -92,4 +92,11 @@
.table-success {
color: #000000;
}
/* Customize Server Interface Addresses */
div.tagsinput input:focus {
color: #ffffff !important;
}
div.tagsinput input {
color: #cde69c !important;
}
}

View file

@ -18,6 +18,6 @@ case $WGUI_MANAGE_RESTART in (1|t|T|true|True|TRUE)
done &
esac
./wg-ui &
trap 'kill 0; exit 0;' SIGTERM INT EXIT
./wg-ui "$@" &
wait $!