|
123456789101112131415161718192021222324252627 |
- /**
- * Copyright (c) 2017-present, Facebook, Inc.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- */
-
- /* your custom css */
-
- @media only screen and (min-device-width: 360px) and (max-device-width: 736px) {
- }
-
- @media only screen and (min-width: 1024px) {
- }
-
- @media only screen and (max-width: 1023px) {
- }
-
- @media only screen and (min-width: 1400px) {
- }
-
- @media only screen and (min-width: 1500px) {
- }
-
- #buymeacoffee {
- height: 50px;
- }
|