Style adjustment

Adjusted style and the status light: Added box-shadow and border for connected peer
This commit is contained in:
Donald Cheng Hong Zou
2021-12-24 00:20:44 -05:00
parent dade9935da
commit 5c588ea01a
4 changed files with 73 additions and 21 deletions

View File

@@ -33,9 +33,9 @@ _check_and_set_venv(){
install_wgd(){
# Check Python3 version
version_pass=$(python3 -c 'import sys; print("1") if (sys.version_info.major == 3 and sys.version_info.minor >= 7) else print("0");')
version_pass=$(python3 -c 'import sys; print("1") if (sys.version_info.major == 3 and sys.version_info.minor >= 8) else print("0");')
if [ $version_pass == "0" ]
then printf "| WGDashboard required Python3.7+ |\n"
then printf "| WGDashboard required Python3.8+ |\n"
printf "%s\n" "$dashes"
exit 1
fi