Fix #20: fix export btn hover (#21)

* issue#20: update allowed hosts & fix export btn hover

* issue#20: revert css padding change

* issue#20: remove export btn important font color rule
This commit is contained in:
Maksim Minko
2020-02-25 23:05:26 +01:00
committed by GitHub
parent a1d73abdca
commit 316e5fd3da
2 changed files with 3 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ DEBUG = os.getenv("DEBUG", True)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
SECRET_KEY = "wow so secret"
ALLOWED_HOSTS = ["127.0.0.1", "0.0.0.0", "vas3k.ru", "infomate.club"]
ALLOWED_HOSTS = ["127.0.0.1", "localhost", "0.0.0.0", "vas3k.ru", "infomate.club"]
INSTALLED_APPS = [
"django.contrib.staticfiles",

View File

@@ -342,7 +342,7 @@
.export-button {
display: inline-block;
color: var(--opposite-text-color) !important;
color: var(--opposite-text-color);
font-size: 90%;
padding: 10px 20px;
margin-top: 40px;
@@ -404,4 +404,4 @@
.coming-soon p {
font-size: 120%;
}
}