mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-22 07:00:58 -05:00
chore: update home buttons
This commit is contained in:
parent
450b404ec5
commit
599aab9a31
3 changed files with 27 additions and 19 deletions
2
external/lang
vendored
2
external/lang
vendored
|
@ -1 +1 @@
|
|||
Subproject commit 91eb519b08d2c6061b99879a00529b0d60cdcc2f
|
||||
Subproject commit 8581abf5e838edca5890ec44be0c9f0a37006009
|
|
@ -43,6 +43,12 @@
|
|||
@media (max-width: 600px) {
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
}
|
||||
|
||||
// lol
|
||||
> * > *,
|
||||
> :last-child > * > * {
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -98,9 +98,9 @@ export default observer(() => {
|
|||
action="chevron"
|
||||
icon={<PlusCircle size={32} />}
|
||||
description={
|
||||
"Invite all of your friends, some cool bots, and throw a big party."
|
||||
<Text id="app.home.group_desc" />
|
||||
}>
|
||||
Create a group
|
||||
<Text id="app.home.group" />
|
||||
</CategoryButton>
|
||||
</Link>
|
||||
<Link to="/discover">
|
||||
|
@ -109,9 +109,9 @@ export default observer(() => {
|
|||
action="chevron"
|
||||
icon={<Compass size={32} />}
|
||||
description={
|
||||
"Find a community based on your hobbies or interests."
|
||||
<Text id="app.home.discover_desc" />
|
||||
}>
|
||||
Join a community
|
||||
<Text id="app.home.discover" />
|
||||
</CategoryButton>
|
||||
</a>
|
||||
</Link>
|
||||
|
@ -124,7 +124,7 @@ export default observer(() => {
|
|||
action="chevron"
|
||||
icon={<RightArrowCircle size={32} />}
|
||||
description={
|
||||
"You can report issues and discuss improvements with us directly here."
|
||||
<Text id="app.home.goto-testers_desc" />
|
||||
}>
|
||||
<Text id="app.home.goto-testers" />
|
||||
</CategoryButton>
|
||||
|
@ -135,7 +135,7 @@ export default observer(() => {
|
|||
action="chevron"
|
||||
icon={<Group size={32} />}
|
||||
description={
|
||||
"You can report issues and discuss improvements with us directly here."
|
||||
<Text id="app.home.join-testers_desc" />
|
||||
}>
|
||||
<Text id="app.home.join-testers" />
|
||||
</CategoryButton>
|
||||
|
@ -147,7 +147,7 @@ export default observer(() => {
|
|||
action="chevron"
|
||||
icon={<Megaphone size={32} />}
|
||||
description={
|
||||
"Let us know how we can improve our app by giving us feedback."
|
||||
<Text id="app.home.feedback_desc" />
|
||||
}>
|
||||
<Text id="app.home.feedback" />
|
||||
</CategoryButton>
|
||||
|
@ -159,15 +159,16 @@ export default observer(() => {
|
|||
<CategoryButton
|
||||
action="external"
|
||||
description={
|
||||
"Support the project by donating - thank you!"
|
||||
<Text id="app.home.donate_desc" />
|
||||
}
|
||||
icon={<Money size={32} />}>
|
||||
<Text id="app.home.donate" />
|
||||
</CategoryButton>
|
||||
</a>
|
||||
</div>
|
||||
<Tooltip
|
||||
content={<Text id="app.home.settings-tooltip" />}>
|
||||
content={
|
||||
<Text id="app.home.settings-tooltip" />
|
||||
}>
|
||||
<Link to="/settings">
|
||||
<CategoryButton
|
||||
action="chevron"
|
||||
|
@ -176,6 +177,7 @@ export default observer(() => {
|
|||
</CategoryButton>
|
||||
</Link>
|
||||
</Tooltip>
|
||||
</div>
|
||||
{isDecember && (
|
||||
<a href="#" onClick={toggleSeasonalTheme}>
|
||||
Turn {seasonalTheme ? "off" : "on"} homescreen
|
||||
|
|
Loading…
Reference in a new issue