mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-18 09:24:35 -05:00
There are some common questions that keep coming up when users are editing or creating templates. This commit adds a pattern for sections of guidance which can be shown/hidden. It then modifies the guidance as follows. Change: - guidance about placeholders; give an example about what to do and what not to do (because the mistake we keep seeing people make is putting the thing itself, not the name of the thing) Add (pretty basic at the moment but a need for these has come out of research): - guidance about links - guidance about message length for text messages
18 lines
322 B
SCSS
18 lines
322 B
SCSS
.secondary-button {
|
|
@include button($grey-1);
|
|
padding: 0.3em 0.1em 0.2em 0.1em;
|
|
width: 100%;
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.tertiary-button {
|
|
@include button($grey-3);
|
|
padding: 0.3em 0.1em 0.2em 0.1em;
|
|
width: 100%;
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
text-align: left;
|
|
}
|