Browse Source

Update the read-only dashboard's CSS for better mobile support

Fixes: #442
pull/456/head
Pēteris Caune 4 years ago
parent
commit
078577cbb7
No known key found for this signature in database GPG Key ID: E28D7679E9A9EDE2
2 changed files with 3 additions and 1 deletions
  1. +1
    -0
      CHANGELOG.md
  2. +2
    -1
      templates/front/dashboard.html

+ 1
- 0
CHANGELOG.md View File

@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file.
- Add a tooltip to the 'confirmation link' label (#436) - Add a tooltip to the 'confirmation link' label (#436)
- Update API to allow specifying channels by names (#440) - Update API to allow specifying channels by names (#440)
- When saving a phone number, remove any invisible unicode characers - When saving a phone number, remove any invisible unicode characers
- Update the read-only dashboard's CSS for better mobile support (#442)
## v1.17.0 - 2020-10-14 ## v1.17.0 - 2020-10-14


+ 2
- 1
templates/front/dashboard.html View File

@ -3,6 +3,7 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>{{ site_name }}</title> <title>{{ site_name }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style> <style>
/* Colors, dark theme */ /* Colors, dark theme */
@ -115,7 +116,7 @@
#panel { #panel {
display: grid; display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
grid-gap: 8px; grid-gap: 8px;
padding: 8px; padding: 8px;
} }


Loading…
Cancel
Save