mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-18 05:30:21 -04:00
Fix spacing on upload link when not inside sticky
We adjust the spacing under the textbox when doing the send one off flow. This was based on the assumption that there would always be a sticky header in the send one off flow. This assumption is no longer true, so this commit implements the same spacing in an independent way.
This commit is contained in:
@@ -70,6 +70,7 @@ $path: '/static/images/';
|
||||
@import 'views/product-page';
|
||||
@import 'views/template';
|
||||
@import 'views/notification';
|
||||
@import 'views/send';
|
||||
|
||||
// TODO: break this up
|
||||
@import 'app';
|
||||
|
||||
7
app/assets/stylesheets/views/send.scss
Normal file
7
app/assets/stylesheets/views/send.scss
Normal file
@@ -0,0 +1,7 @@
|
||||
.send-one-off-form {
|
||||
|
||||
.form-group {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -15,7 +15,7 @@
|
||||
</h1>
|
||||
|
||||
{% call form_wrapper(
|
||||
class="js-stick-at-top-when-scrolling" if template.template_type != 'sms' else '',
|
||||
class='js-stick-at-top-when-scrolling send-one-off-form' if template.template_type != 'sms' else 'send-one-off-form',
|
||||
module="autofocus"
|
||||
) %}
|
||||
<div class="grid-row">
|
||||
|
||||
Reference in New Issue
Block a user