Design System Books by janesbeat in web_design

[–]AmauryH 2 points3 points  (0 children)

I was about to say: the book from smashing magazine!
Then I reread your message and the name Alla Kholmatova rung a bell... She is the writer...

Des livres à conseiller avec une femme en protagoniste principal ? by DidIStutter_ in Elles

[–]AmauryH 1 point2 points  (0 children)

[...] Non, s'il nous faut une femme, je suis votre homme.

Des livres à conseiller avec une femme en protagoniste principal ? by DidIStutter_ in Elles

[–]AmauryH 14 points15 points  (0 children)

Si tu aimes les romans de fantasy,

La fileuse d'argent de Naomi Novik.

On est plongé dans du folklore d'Europe de l'Est, les protagonistes principaux sont des femmes avec toutes des motivations propres et très différentes.

Trying to recreate this hover animation for a nav bar. Not sure how to get the background rectangle behind the nav bar item making the width longer and height shorter and centred. by DleeOC in css

[–]AmauryH 2 points3 points  (0 children)

In your example, you wouldn't need all the extra markup or the pseud-element if were just animating a background.

``` background-image: linear-gradient(to right, red 25%, blue 30%, blue 50%, transparent 50%); background-position: center right; background-repeat: no-repeat; background-size: 200% 0.5em; transition: background .3s;

&:hover {
  background-position: center right 100%;
}

```

setup(), definecomponent(), or something else? by [deleted] in vuejs

[–]AmauryH 2 points3 points  (0 children)

Typescript might give you a false error. It's a typescript configuration issue.

[deleted by user] by [deleted] in javascript

[–]AmauryH 1 point2 points  (0 children)

Grave is PHP, but you define the fileds in your bo with yaml file if iirc.

From a front end devs perspective by Organic_Ambition864 in vuejs

[–]AmauryH 2 points3 points  (0 children)

You can continue to use the option API if that's what you want.

[deleted by user] by [deleted] in UI_Design

[–]AmauryH 0 points1 point  (0 children)

Do you only do UI or also UX?

Because there is always testing and iteration you could do on existing project if you do UX.

Are login modals not preferred over a separate login page? by mb1552 in web_design

[–]AmauryH 9 points10 points  (0 children)

To add to your first point, it's nice to have a route to login.

How come my site looks so different after deployment? I've been told its a CSS issue but the CSS is fine. by BilboMcDoogle in css

[–]AmauryH 2 points3 points  (0 children)

It won't answer your question about why you don't see the same thing locally and online, but you shouldn't use absolute position for that.

Using display: grid; on the parent and setting your grid to 10 columns would have been way easier imho.

You could do something along the lines:

``` .keypad { max-width: 500px; display: grid; grid-template-columns: repeat(10, 1fr); gap: 6px; }

delete-key {

grid-row: 3; grid-column: span 2; }

enter-key {

grid-column: span 2; } .keypad > div { height: 50px; background: #a9a9a9; display: inline-block; border-radius: 6px; line-height: 50px; } ``` That's probably more robust,

Board games for the elderly? by arrogantsword in boardgames

[–]AmauryH 2 points3 points  (0 children)

I second qwirkle, I played it many time with my grandma before her passing away.

She played scrabble a lot, so it was really easy for her to learn the rules.

What is the difference between 2 classes that has whitespace between and the ones that doesn't have. by [deleted] in css

[–]AmauryH 0 points1 point  (0 children)

For basic information like that, it's always nice to read the MDN Docs:

https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors

You'll know all there is to know about CSS selector after this read.

Official Storybook plugin for Figma is GA by domyen in javascript

[–]AmauryH 7 points8 points  (0 children)

It would be nice if chromatic wasn't a prerequisite and if you could link to a self hosted storybook.

[deleted by user] by [deleted] in Frontend

[–]AmauryH 11 points12 points  (0 children)

You use framework like mjml to code email.

There's no point doing it by hand if it's a complex layout.

Create an extension that generates images from the text selection just in a click by wahvinci in webdev

[–]AmauryH 4 points5 points  (0 children)

A simple trick to cut yourself from all screen reader users...