Skip to content

Commit 27837be

Browse files
committed
small fixes
1 parent afd5013 commit 27837be

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

App/Models/User.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ public function GetCreated () {
340340
public static function GetAll ($orderCol = 'created', $orderDir = 'desc') {
341341
return self::GetConnection()
342342
->Prepare([
343-
"SELECT ".Columns()." ",
343+
"SELECT * ",
344344
"FROM users ",
345345
"ORDER BY {$orderCol} {$orderDir}; ",
346346
])

static/css/layout.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ background: linear-gradient(rgb(108,120,159,0.6),rgb(108,120,159,0.3)),
99
1010
.master-container{width:50%;min-width:900px;margin:30px auto 50px auto;}
1111
12-
div.content{padding:25px;background:#fff;border-radius:3px;box-shadow:0 0 15px rgba(0,0,0,0.6);}
13-
div.content h1{margin:10px 0 25px 0;font-family:'MyriadBold';font-size:32px;}
12+
.master-container > div.content{padding:25px;background:#fff;border-radius:3px;box-shadow:0 0 15px rgba(0,0,0,0.6);}
13+
.master-container > div.content h1{margin:10px 0 25px 0;font-family:'MyriadBold';font-size:32px;}
1414
15-
div.content a.head-btn{float:right;}
15+
.master-container > div.content a.head-btn{float:right;}
1616
1717
div.errors{margin-bottom:10px;}
1818
div.error{color:#ff2222;font-family:'MyriadSemiBold';text-align:center;}

0 commit comments

Comments
 (0)