aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMateja <mail@matejamaric.com>2020-10-04 19:17:51 +0200
committerMateja <mail@matejamaric.com>2020-10-04 19:17:51 +0200
commitbcf40952acd8fb0524cab3645a7b6616332b4b71 (patch)
tree582b725b5d23566b142ff7300c2b39822f2e80a7
parente853c2949930fdbf64639893a30565531bf5be9d (diff)
downloadold-php-yota-bcf40952acd8fb0524cab3645a7b6616332b4b71.tar.gz
old-php-yota-bcf40952acd8fb0524cab3645a7b6616332b4b71.zip
Style fix
-rw-r--r--style.css4
-rw-r--r--test/notes.sql6
2 files changed, 7 insertions, 3 deletions
diff --git a/style.css b/style.css
index 7244b63..d76bb23 100644
--- a/style.css
+++ b/style.css
@@ -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(