diff options
author | Einar Egilsson <einar@einaregilsson.com> | 2021-01-27 15:02:08 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-27 15:02:08 +0000 |
commit | bc77e9b2be5b98d4fb3e3a58fb3cbedd11ace908 (patch) | |
tree | 37b937cb1a37d8147dfc44996efb2757901e19c7 | |
parent | 0596834396435891cc41923114e81b3080b07a64 (diff) | |
parent | 59f29e375ad1271210e5a2906d8cf99f15a11ca4 (diff) |
Merge pull request #246 from linsui/master
UI fix for mobile
-rw-r--r-- | css/redirector.css | 4 | ||||
-rw-r--r-- | popup.html | 1 | ||||
-rw-r--r-- | redirector.html | 1 |
3 files changed, 4 insertions, 2 deletions
diff --git a/css/redirector.css b/css/redirector.css index 71c7d74..63ee0a7 100644 --- a/css/redirector.css +++ b/css/redirector.css @@ -206,7 +206,7 @@ input[type="radio"] { .redirect-info div p { display:table-cell; - word-wrap:break-word; + word-wrap:anywhere; max-width:700px; } @@ -670,4 +670,4 @@ footer small a:hover { border-color: rgb(68,68,68) !important ; border-radius: 2px; } -}
\ No newline at end of file +} @@ -4,6 +4,7 @@ <title>REDIRECTOR</title> <link rel="stylesheet" href="css/popup.css" /> <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width"> </head> <body> <h1>REDIRECTOR</h1> diff --git a/redirector.html b/redirector.html index 58fc263..e0f6f4c 100644 --- a/redirector.html +++ b/redirector.html @@ -6,6 +6,7 @@ <link rel="stylesheet" href="css/redirector.css" /> <!-- ☈ --> <link rel="shortcut icon" href="images/icon-light-theme-32.png"> + <meta name="viewport" content="width=device-width"> </head> <body> <div id="cover"> |