diff options
author | Mateja <mail@matejamaric.com> | 2020-10-04 19:17:51 +0200 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2020-10-04 19:17:51 +0200 |
commit | bcf40952acd8fb0524cab3645a7b6616332b4b71 (patch) | |
tree | 582b725b5d23566b142ff7300c2b39822f2e80a7 | |
parent | e853c2949930fdbf64639893a30565531bf5be9d (diff) | |
download | old-php-yota-bcf40952acd8fb0524cab3645a7b6616332b4b71.tar.gz old-php-yota-bcf40952acd8fb0524cab3645a7b6616332b4b71.zip |
Style fix
-rw-r--r-- | style.css | 4 | ||||
-rw-r--r-- | test/notes.sql | 6 |
2 files changed, 7 insertions, 3 deletions
@@ -195,4 +195,8 @@ header { margin: 0; padding: 1rem 0; } + nav span.right { + text-align: center; + float: none; + } } diff --git a/test/notes.sql b/test/notes.sql index fbabe4e..3ba322f 100644 --- a/test/notes.sql +++ b/test/notes.sql @@ -3,7 +3,7 @@ USE yota_db; CREATE TABLE activities( `id` int(11) not null auto_increment primary key, - `approved` boolean not null default false; + `approved` boolean not null default false, `specialCall` varchar(50) not null, `fromTime` datetime not null, `toTime` datetime not null, @@ -12,8 +12,8 @@ CREATE TABLE activities( `operatorCall` varchar(50) not null, `operatorName` varchar(50) not null, `operatorEmail` varchar(100) not null, - `operatorPhone` varchar(50) not null - `qso` int not null default 0; + `operatorPhone` varchar(50) not null, + `qso` int not null default 0 ) charset=utf8; CREATE TABLE admins( |