Final v2.3.1

This commit is contained in:
Robert Strouse 2024-01-21 18:19:43 -08:00
parent 3f07b481dc
commit 54f98805b4
17 changed files with 318 additions and 503 deletions

View file

@ -3,11 +3,11 @@
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<link rel="stylesheet" href="main.css?v=2.3.1" type="text/css" />
<link rel="stylesheet" href="widgets.css?v=2.3.1" type="text/css" />
<link rel="stylesheet" href="icons.css?v=2.3.1" type="text/css" />
<link rel="stylesheet" href="main.css?v=2.3.1r" type="text/css" />
<link rel="stylesheet" href="widgets.css?v=2.3.1r" type="text/css" />
<link rel="stylesheet" href="icons.css?v=2.3.1r" type="text/css" />
<link rel="icon" type="image/png" href="favicon.png" />
<script type="text/javascript" src="index.js?v=2.3.1"></script>
<script type="text/javascript" src="index.js?v=2.3.1r"></script>
</head>
<body>
<div id="divContainer" class="container main" data-auth="false">

View file

@ -10,8 +10,8 @@ body {
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 14px;
background-color: #eeeeee;
margin-top: 77px;
box-sizing: border-box;
margin-top: 77px;
}
@ -844,3 +844,12 @@ div.frame-pulses {
text-overflow:ellipsis;
display:none;
}
@media only screen and (max-device-width: 480px) {
body {
margin-top: 0px;
}
.subtab-content {
padding-left:14px;
padding-right:14px;
}
}

View file

@ -303,3 +303,13 @@
.room-selector-list .room-row:hover {
color: var(--shade-color, gray);
}
@media only screen and (max-device-width: 480px) {
body {
margin-top: 0px;
}
.container {
padding-left: 10px;
padding-right: 10px;
}
}