Merge branch 'next' of github.com:coralproject/talk into auth-views

* 'next' of github.com:coralproject/talk:
  Readd comments not found
  Make readonly and add translations
  Add localization
  Change text
  Add SetViewMutation
  Get view from query + tests
  Styling, refactor + tests
  Add UserBox
  Add auth target
This commit is contained in:
Belén Curcio
2018-08-09 10:24:34 -03:00
76 changed files with 2387 additions and 1110 deletions
@@ -6,7 +6,7 @@
justify-content: center;
align-items: center;
box-sizing: border-box;
border: 1px solid transparent;
border: 0px solid transparent;
& > * {
margin: 0 calc(0.5 * var(--spacing-unit)) 0 0;
@@ -154,6 +154,7 @@
}
.variantOutlined {
border: 1px solid transparent;
&.colorRegular {
color: var(--palette-grey-main);
border: 1px solid currentColor;
@@ -220,6 +221,7 @@
}
.variantGhost {
border: 1px solid transparent;
&.colorRegular {
color: var(--palette-grey-main);
}
@@ -13,7 +13,7 @@ import Flex from '../Flex'
## Regular Button
<Playground>
<Flex itemGutter wrap>
<Flex itemGutter>
<Button>Push Me</Button>
<Button size="small">Push Me</Button>
<Button size="large">Push Me</Button>
@@ -29,7 +29,7 @@ import Flex from '../Flex'
## Filled Button
<Playground>
<Flex itemGutter wrap>
<Flex itemGutter>
<Button variant="filled">Push Me</Button>
<Button variant="filled" size="small">Push Me</Button>
<Button variant="filled" size="large">Push Me</Button>
@@ -45,7 +45,7 @@ import Flex from '../Flex'
## Outlined Button
<Playground>
<Flex itemGutter wrap>
<Flex itemGutter>
<Button variant="outlined">Push Me</Button>
<Button variant="outlined" size="small">Push Me</Button>
<Button variant="outlined" size="large">Push Me</Button>
@@ -61,7 +61,7 @@ import Flex from '../Flex'
## Ghost Button
<Playground>
<Flex itemGutter wrap>
<Flex itemGutter>
<Button variant="ghost">Push Me</Button>
<Button variant="ghost" size="small">Push Me</Button>
<Button variant="ghost" size="large">Push Me</Button>