show next continent

This commit is contained in:
41666 2023-06-09 16:44:05 -04:00
parent 9b439d0a19
commit ca9be2d846
3 changed files with 42 additions and 0 deletions

View file

@ -144,3 +144,21 @@ export const alertCont = style({
border: "2px solid #ff2d2d",
animation: `${alertFade} 1s ease-in-out 4 alternate`,
});
export const nextCont = style({
display: "flex",
flexDirection: "row",
alignItems: "center",
padding: "0.5rem",
justifyContent: "center",
backgroundColor: "#222",
borderRadius: "0.4rem",
margin: "0.5rem",
color: "#aaa",
});
export const nextContText = style({
fontWeight: "bold",
textTransform: "uppercase",
marginRight: "0.5rem",
});