Den 959c5589d0
fix: <svg> attribute width="<N>rem" errors in Safari (#21550)
* fix: <svg> attribute width="2rem" error in Safari
I changed the with and height value for all svgs used in the LeftMenu. It was changed from 2rem to 20px. Rem was leading to the error message Error: Invalid value for <svg> attribute width="2rem" in the safari browser.

* fix: <svg> attribute width="1.2rem" error in Safari
I changed the with and height value for all svgs used in the Onboarding. It was changed from 1.2rem to 12px. Rem was leading to the error message Error: Invalid value for attribute width="1.2rem" in the safari browser.

* Update packages/core/admin/admin/src/components/LeftMenu.tsx

Co-authored-by: Simone <startae14@gmail.com>

* 12px => 12

---------

Co-authored-by: Simone <startae14@gmail.com>
2024-10-02 14:24:19 +02:00
..
2024-08-28 16:59:48 +02:00

Strapi built-in admin panel

Description

This is the admin panel package

Contribute

You can read the contribution guide here

Setup

Create a new Strapi project: strapi new myApp.

Go in your project: cd myApp.

Development

Start the React application: cd myApp/admin, then npm start.

The admin panel should now be available at http://localhost:4000.

Build

In order to check your updates, you can build the admin panel: cd myApp, then npm run build.