mirror of
https://github.com/nunntom/elm-ui-select.git
synced 2024-11-22 11:54:11 +03:00
26 lines
619 B
HTML
26 lines
619 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<script type="module" src="index.js"></script>
|
|
<title>Elm-ui-select Demo</title>
|
|
<style>
|
|
@media (max-width: 720px) {
|
|
.responsive-desktop {
|
|
display: none !important;
|
|
}
|
|
}
|
|
@media (min-width: 720px) {
|
|
.responsive-mobile {
|
|
display: none !important;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="elm"></div>
|
|
</body>
|
|
</html>
|