Invalid vue scoped html style

The

login page uses a separate style, so I want to add scoped to the login page to act on the current page, but the effect of html is gone, and small-level styles can be


@media screen and (min-width: 1600px) {
  html {
    font-size: 100px;
  }
}

:
.container {
  width: 100%;
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
}

@ Xiamen Bing is right, just write it this way.

<style>
@media screen and (min-width: 1600px) {
  html {
    font-size: 100px;
  }
}
</style>
<style lang="scss" scoped>
.container {
  width: 100%;
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
}
</style>

scope has no way to control the attributes of elements outside the component


current component:

    <template>
        <div class="page"></div>
    </template>

if you add scoped, you can only control the .page {width:100px;} and its internal style. Such body,html needs to be set globally; and if you write another .page {width:50px;} in the global style, it will also affect the .page

of the current page.
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b36685-2bff3.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b36685-2bff3.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?