diff --git a/dashboard/public/components/registration-page.css b/dashboard/public/components/registration-page.css index 75aec9e..9bb56d8 100644 --- a/dashboard/public/components/registration-page.css +++ b/dashboard/public/components/registration-page.css @@ -52,7 +52,7 @@ h2+aside { } #MainCard .Main-Content { - height: 275px; + height: 350px; } neon-animatable { diff --git a/dashboard/public/components/resources/md2-input/md2-input.css b/dashboard/public/components/resources/md2-input/md2-input.css index 1d31618..1fa7db5 100644 --- a/dashboard/public/components/resources/md2-input/md2-input.css +++ b/dashboard/public/components/resources/md2-input/md2-input.css @@ -52,4 +52,18 @@ input { color: var(--action-color); @apply --paper-input-error; @apply --md2-error; +} +.paper-material { + display: inline-block; + box-sizing: border-box; + padding: 1rem; + color: var(--paper-grey-800); + background-color: var(--paper-grey-50); + @apply --shadow-elevation-2dp; + @apply --paper-material; +} +.paper-material h3 { + margin: 0; + font-size: 1.2rem; + color: var(--paper-red-500); } \ No newline at end of file diff --git a/dashboard/public/components/resources/md2-input/md2-input.pug b/dashboard/public/components/resources/md2-input/md2-input.pug index 2fd6d49..f843930 100644 --- a/dashboard/public/components/resources/md2-input/md2-input.pug +++ b/dashboard/public/components/resources/md2-input/md2-input.pug @@ -6,4 +6,19 @@ on-focus='inputFocused', on-blur='inputBlurred', on-keydown='validateRange') slot(name='suffix', slot='suffix') iron-a11y-keys#keys(target='[[inputElement]]', keys='enter', on-keys-pressed='fireEnter') -aside.Error [[error]] \ No newline at end of file +aside.Error [[error]] + +div(class="paper-material") + h3 WARNING + p + | deployKF does + | + strong NOT + | + | support managing profiles through this interface. + br + | Please see the + | + a(href='https://www.deploykf.org/guides/platform/deploykf-profiles/') profile management + | + | guide. \ No newline at end of file