diff options
author | Guillaume Mazoyer <gmazoyer@gravitons.in> | 2016-02-19 14:28:42 +0100 |
---|---|---|
committer | Guillaume Mazoyer <gmazoyer@gravitons.in> | 2016-02-19 14:28:42 +0100 |
commit | 30a0e57a35215cf4efcaa5c3ab1e4cd4eba4e4cc (patch) | |
tree | b4cec8a19fb4b079f6c9c4909e2112bd5c1f3cbc /index.php | |
parent | afe8d448529e8b65e2efd2befbd08de79609a8ba (diff) |
Small change for UI buttons.
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -86,12 +86,10 @@ final class LookingGlass { } private function render_buttons() { - print('<div class="confirm btn-group btn-group-justified">'); - print('<div class="btn-group">'); - print('<button class="btn btn-primary" id="send" type="submit">Enter</button>'); - print('</div>'); - print('<div class="btn-group">'); - print('<button class="btn btn-danger" id="clear" type="reset">Reset</button>'); + print('<div class="confirm btn-group">'); + print('<div class="col-md-12 btn-group">'); + print('<button class="col-md-6 btn btn-primary" id="send" type="submit">Enter</button>'); + print('<button class="col-md-6 btn btn-danger" id="clear" type="reset">Reset</button>'); print('</div>'); print('</div>'); } |