diff --git a/html/css/base.css b/html/css/base.css index c7e62851..f0b6057b 100644 --- a/html/css/base.css +++ b/html/css/base.css @@ -38,4 +38,23 @@ HTML,BODY { .footer A { color: #cccccc; +} + + + +@media (max-width: 767px) { + + .container { + padding: 0px; + } + + .card-body { + font-size: 6pt; + } + + .lg_number { + font-size: 22pt; + } + + } \ No newline at end of file diff --git a/main_test.go b/main_test.go new file mode 100644 index 00000000..7f59a89c --- /dev/null +++ b/main_test.go @@ -0,0 +1,28 @@ +package main + +import ( + "testing" + "github.com/stretchr/testify/assert" +) + +func TestMakeConfig(t *testing.T) { + config := &DbConfig{ + "postgres", + "localhost", + "travis", + "", + "postgres", + 5432, + "Testing", + "admin", + "admin", + } + err := config.Save() + assert.Nil(t, err) +} + +func Test(t *testing.T) { + + assert.Equal(t, "", "") + +} \ No newline at end of file