Browse Source

Serviço de contato fica como cadastro, e outros ajustes.

master
Eduardo Velasques 4 years ago
parent
commit
214139cfa1
6 changed files with 13 additions and 5 deletions
  1. +0
    -0
      server/services/admin/register/list/post.js
  2. +1
    -1
      server/services/register/post.js
  3. +2
    -2
      ui/src/containers/DashboardContainer/index.js
  4. +1
    -1
      ui/src/containers/RegisterTable/index.js
  5. +0
    -0
      ui/src/containers/RegisterTable/index.less
  6. +9
    -1
      website/src/components/Banner/index.less

server/services/admin/contact/list/post.js → server/services/admin/register/list/post.js View File


server/services/contact/post.js → server/services/register/post.js View File


+ 2
- 2
ui/src/containers/DashboardContainer/index.js View File

@ -2,7 +2,7 @@ import React from "react";
import { Typography, Tabs } from "antd";
import ContactTable from "../ContactTable";
import RegisterTable from "../RegisterTable";
import "./index.less";
@ -17,7 +17,7 @@ function DashboardContainer() {
<Tabs defaultActiveKey="1">
<TabPane tab="Cadastros" key="1">
<p>Lista de cadastros submetidos pelo formulário do website.</p>
<ContactTable />
<RegisterTable />
</TabPane>
</Tabs>
</div>


ui/src/containers/ContactTable/index.js → ui/src/containers/RegisterTable/index.js View File


ui/src/containers/ContactTable/index.less → ui/src/containers/RegisterTable/index.less View File


+ 9
- 1
website/src/components/Banner/index.less View File

@ -116,6 +116,14 @@
min-height: 150px;
}
}
@media only screen and (min-width: @header-mobile-width) {
&.banner__default {
min-height: 700px;
}
&.banner__secondary {
min-height: 400px;
}
}
> div {
width: 100%;
> div {
@ -166,7 +174,7 @@
h4 {
font-family: 'Roboto Mono';
text-transform: uppercase;
font-size: 0.8em;
font-size: 14px;
margin-bottom: 0.1em;
}
p {


Loading…
Cancel
Save