forked from External/greenlight
GRN2-xx: Fixed scaling issue on mobile (#843)
* Disabled browser auto zoom * Fixed spacing * Removed unnecessary file
This commit is contained in:
parent
12193c2008
commit
9c9867b4e7
|
@ -35,6 +35,7 @@
|
||||||
<meta property="og:url" content="<%= request.base_url %>" />
|
<meta property="og:url" content="<%= request.base_url %>" />
|
||||||
<meta property="og:image" content="<%= logo_image %>" />
|
<meta property="og:image" content="<%= logo_image %>" />
|
||||||
|
|
||||||
|
<meta name="viewport" content= "width=device-width, user-scalable=no">
|
||||||
<%= csrf_meta_tags %>
|
<%= csrf_meta_tags %>
|
||||||
|
|
||||||
<!-- Global javascript variables and helpers. -->
|
<!-- Global javascript variables and helpers. -->
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
<% unless exceeds_limit %>
|
<% unless exceeds_limit %>
|
||||||
<label class="form-label"><%= t("room.invite_participants") %></label>
|
<label class="form-label"><%= t("room.invite_participants") %></label>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-lg-7 col-md-12 mt-2 pr-0">
|
<div class="col-lg-7 col-md-12 mt-2">
|
||||||
<div class="input-icon invite-link-input">
|
<div class="input-icon invite-link-input">
|
||||||
<span class="input-icon-addon">
|
<span class="input-icon-addon">
|
||||||
<i class="fas fa-link"></i>
|
<i class="fas fa-link"></i>
|
||||||
|
@ -44,7 +44,7 @@
|
||||||
<input id="invite-url" type="text" class="form-control w-100" value="<%= request.base_url + @room.invite_path %>" readonly="">
|
<input id="invite-url" type="text" class="form-control w-100" value="<%= request.base_url + @room.invite_path %>" readonly="">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-5 col-md-12 pr-0">
|
<div class="col-lg-5 col-md-12">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-sm-6">
|
<div class="col-sm-6">
|
||||||
<a href="#" id="copy" class="btn btn-primary btn-block mt-2">
|
<a href="#" id="copy" class="btn btn-primary btn-block mt-2">
|
||||||
|
@ -65,7 +65,7 @@
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
<div class="offset-lg-1 col-lg-3 col-sm-12 force-bottom mt-5 pr-0">
|
<div class="offset-lg-1 col-lg-3 col-sm-12 force-bottom mt-5">
|
||||||
<% if @room_running %>
|
<% if @room_running %>
|
||||||
<%= button_to t("room.join"), room_path(@room), class: "btn btn-primary btn-block px-7 start-button float-right" %>
|
<%= button_to t("room.join"), room_path(@room), class: "btn btn-primary btn-block px-7 start-button float-right" %>
|
||||||
<% else %>
|
<% else %>
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
# See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
|
|
||||||
#
|
|
||||||
# To ban all spiders from the entire site uncomment the next two lines:
|
|
||||||
# User-agent: *
|
|
||||||
# Disallow: /
|
|
Loading…
Reference in New Issue