Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cydrobolt/polr.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChaoyi Zha <summermontreal@gmail.com>2017-10-26 23:30:41 +0300
committerChaoyi Zha <summermontreal@gmail.com>2017-10-26 23:30:41 +0300
commit90e24195ee37409b95556f69a3c1ff1b57685b24 (patch)
treef9c74784c586d078a2b83b64067ceab4c9891eff
parent3a8ce1d0eca281a8f765612ded993e860792e220 (diff)
Change button class to be more general
-rw-r--r--public/css/shorten_result.css2
-rw-r--r--resources/views/shorten_result.blade.php4
2 files changed, 3 insertions, 3 deletions
diff --git a/public/css/shorten_result.css b/public/css/shorten_result.css
index 46adf07..c672654 100644
--- a/public/css/shorten_result.css
+++ b/public/css/shorten_result.css
@@ -5,7 +5,7 @@
}
-.back-btn {
+.btn {
margin-top: 30px;
}
diff --git a/resources/views/shorten_result.blade.php b/resources/views/shorten_result.blade.php
index 4098acd..ae16c32 100644
--- a/resources/views/shorten_result.blade.php
+++ b/resources/views/shorten_result.blade.php
@@ -7,8 +7,8 @@
@section('content')
<h3>Shortened URL</h3>
<input type='text' class='result-box form-control' value='{{$short_url}}' />
-<a id="generate-qr-code" class='btn btn-primary back-btn'>Generate QR Code</a>
-<a href='{{route('index')}}' class='btn btn-info back-btn'>Shorten another</a>
+<a id="generate-qr-code" class='btn btn-primary'>Generate QR Code</a>
+<a href='{{route('index')}}' class='btn btn-info'>Shorten another</a>
<div class="qr-code-container"></div>