Git Product home page Git Product logo

Comments (4)

billalxcode avatar billalxcode commented on May 25, 2024

Hello, after I checked the following page https://zuramai.github.io/mazer/demo/extra-component-sweetalert.html, I didn't find a long input size. Take a look at the following screenshot...

image

Try doing the following steps

  1. Refresh your browser page
  2. Try updating the repository by running the git pull command

from mazer.

hersag avatar hersag commented on May 25, 2024

@bilal it looks fine in dark mode. try the light mode to see it.
btw, other alert inputs have the same problem too

from mazer.

billalxcode avatar billalxcode commented on May 25, 2024

After just checking, it is true that there is a bug in light mode. Please open the file assets/static/js/pages/sweetalert2.js there is a customClass for input. If you delete customClass input or delete the contents of customClass > input then the bug will disappear.

const Swal2 = Swal.mixin({
  customClass: {
    input: 'form-control'
  }
})

then change the code above to:

const Swal2 = Swal.mixin({
  customClass: {
    input: ''
  }
})

I haven't found another solution yet.

from mazer.

billalxcode avatar billalxcode commented on May 25, 2024

Another alternative is to change the width of the .form-control class to initial. An example is like this

.form-control {
   width: 100%;
}

then change it to

.form-control {
   width: initial;
}

from mazer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.