Modal popup styling

1
Hi Community! I would like to create my own layout for a modal popup and I come to you with a question: how can I create a popup like the one pictured below? Among other things, I want to add an icon in place of the layout title.     Best regards, Adam!  
asked
1 answers
1

If anyone is looking for a solution, it is necessary to add a new class, which we add on our modal popup.

 

.headerOff {

    & .modal-content .modal-header {

        border: none;

        padding: 4px;

        * {

            display: none;

        }

    }

}

Then we remove the header completely and are still able to move the window :)

answered