aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+error-page/error-page.component.scss
blob: 4e12e8c78b54d4a3b7c6b9c5298dc112d9fafbb7 (plain) (tree)
1
2
3
4
5
6
7
8
9

                       
 
       


                              
               
                     
                     




                                 
                      


                    
 
       

                               

                 

   

                                               
                                  






                                               

                                         



                   

   
@use '_variables' as *;
@use '_mixins' as *;

.root {
  @include margin-left(auto);
  @include margin-right(auto);

  height: 100%;
  text-align: center;
  padding-top: 150px;
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;

  .box {
    text-align: start;
    font-size: 120%;
    padding: 0 15px;
  }

  img {
    @include margin-left(auto);

    width: 220px;
    height: auto;
  }

  @media screen and (max-width: $mobile-view) {
    img {
      @include margin-right(auto);
    }
  }

  @media screen and (min-width: $mobile-view) {
    width: 400px;
  }

  @media screen and (max-height: 600px) {
    padding-top: 50px;

    img {
      width: 160px;
    }
  }
}